TinyLifeWeb/docs/api/TinyLife.PerSaveOptions.yml
2023-05-11 14:56:06 +02:00

1790 lines
57 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.PerSaveOptions
commentId: T:TinyLife.PerSaveOptions
id: PerSaveOptions
parent: TinyLife
children:
- TinyLife.PerSaveOptions.AiImportantActions
- TinyLife.PerSaveOptions.AiRelationships
- TinyLife.PerSaveOptions.AiSkillBuilding
- TinyLife.PerSaveOptions.DisableAiHousehold
- TinyLife.PerSaveOptions.DisableAiSelected
- TinyLife.PerSaveOptions.DisplayedHints
- TinyLife.PerSaveOptions.Instance
- TinyLife.PerSaveOptions.Load(System.String)
- TinyLife.PerSaveOptions.LoadedMods
- TinyLife.PerSaveOptions.MapCustom
- TinyLife.PerSaveOptions.MapName
- TinyLife.PerSaveOptions.MaxRegularVisitors
- TinyLife.PerSaveOptions.OtherLifespan
- TinyLife.PerSaveOptions.PlayedLifespan
- TinyLife.PerSaveOptions.Save(System.String)
langs:
- csharp
- vb
name: PerSaveOptions
nameWithType: PerSaveOptions
fullName: TinyLife.PerSaveOptions
type: Class
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PerSaveOptions
path: ../TinyLife/Options.cs
startLine: 425
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe game&apos;s per-save options, which are displayed in the <xref href=\"TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem%2cSystem.Boolean%2cTinyLife.Uis.OptionsMenu.Tab)\" data-throw-if-not-resolved=\"false\"></xref> menu and saved to disk.\nNote that <xref href=\"TinyLife.PerSaveOptions.Instance\" data-throw-if-not-resolved=\"false\"></xref> is null if there is no <xref href=\"TinyLife.GameImpl.Map\" data-throw-if-not-resolved=\"false\"></xref> loaded.\n"
example: []
syntax:
content: >-
[DataContract]
public class PerSaveOptions : JsonTypeSafeGenericDataHolder, IGenericDataHolder
content.vb: >-
<DataContract>
Public Class PerSaveOptions Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder
inheritance:
- System.Object
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
implements:
- MLEM.Misc.IGenericDataHolder
inheritedMembers:
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods:
- TinyLife.PerSaveOptions.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.Instance
commentId: P:TinyLife.PerSaveOptions.Instance
id: Instance
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: Instance
nameWithType: PerSaveOptions.Instance
fullName: TinyLife.PerSaveOptions.Instance
type: Property
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Instance
path: ../TinyLife/Options.cs
startLine: 432
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe static singleton instance of <xref href=\"TinyLife.PerSaveOptions\" data-throw-if-not-resolved=\"false\"></xref>.\nNote that this value is null if there is no <xref href=\"TinyLife.GameImpl.Map\" data-throw-if-not-resolved=\"false\"></xref> loaded.\n"
example: []
syntax:
content: public static PerSaveOptions Instance { get; }
parameters: []
return:
type: TinyLife.PerSaveOptions
content.vb: Public Shared Property Instance As PerSaveOptions
overload: TinyLife.PerSaveOptions.Instance*
- uid: TinyLife.PerSaveOptions.DisplayedHints
commentId: F:TinyLife.PerSaveOptions.DisplayedHints
id: DisplayedHints
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: DisplayedHints
nameWithType: PerSaveOptions.DisplayedHints
fullName: TinyLife.PerSaveOptions.DisplayedHints
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisplayedHints
path: ../TinyLife/Options.cs
startLine: 438
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe <xref href=\"TinyLife.Uis.InGameHint.Name\" data-throw-if-not-resolved=\"false\"></xref> of <xref href=\"TinyLife.Uis.InGameHint\" data-throw-if-not-resolved=\"false\"></xref> objects that have already been displayed\n"
example: []
syntax:
content: >-
[DataMember]
public readonly HashSet<string> DisplayedHints
return:
type: System.Collections.Generic.HashSet{System.String}
content.vb: >-
<DataMember>
Public ReadOnly DisplayedHints As HashSet(Of String)
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.DisableAiSelected
commentId: F:TinyLife.PerSaveOptions.DisableAiSelected
id: DisableAiSelected
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: DisableAiSelected
nameWithType: PerSaveOptions.DisableAiSelected
fullName: TinyLife.PerSaveOptions.DisableAiSelected
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisableAiSelected
path: ../TinyLife/Options.cs
startLine: 444
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the AI of the <xref href=\"TinyLife.Tools.PlayModeTool.SelectedPerson\" data-throw-if-not-resolved=\"false\"></xref> should be disabled or not\n"
example: []
syntax:
content: >-
[DataMember]
public bool DisableAiSelected
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public DisableAiSelected As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.DisableAiHousehold
commentId: F:TinyLife.PerSaveOptions.DisableAiHousehold
id: DisableAiHousehold
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: DisableAiHousehold
nameWithType: PerSaveOptions.DisableAiHousehold
fullName: TinyLife.PerSaveOptions.DisableAiHousehold
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisableAiHousehold
path: ../TinyLife/Options.cs
startLine: 449
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the AI of everyone in the <xref href=\"TinyLife.GameImpl.CurrentHousehold\" data-throw-if-not-resolved=\"false\"></xref> should be disabled or not\n"
example: []
syntax:
content: >-
[DataMember]
public bool DisableAiHousehold
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public DisableAiHousehold As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.AiImportantActions
commentId: F:TinyLife.PerSaveOptions.AiImportantActions
id: AiImportantActions
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: AiImportantActions
nameWithType: PerSaveOptions.AiImportantActions
fullName: TinyLife.PerSaveOptions.AiImportantActions
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiImportantActions
path: ../TinyLife/Options.cs
startLine: 455
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the AI should be able to execute important options, like paying the bills.\nThis option is intended to be used through <xref href=\"TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataMember]
public bool AiImportantActions
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public AiImportantActions As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.AiSkillBuilding
commentId: F:TinyLife.PerSaveOptions.AiSkillBuilding
id: AiSkillBuilding
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: AiSkillBuilding
nameWithType: PerSaveOptions.AiSkillBuilding
fullName: TinyLife.PerSaveOptions.AiSkillBuilding
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiSkillBuilding
path: ../TinyLife/Options.cs
startLine: 461
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the AI should be able to execute skill building actions like painting and programming.\nThis option is intended to be used through <xref href=\"TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person%2cTinyLife.Skills.SkillType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataMember]
public bool AiSkillBuilding
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public AiSkillBuilding As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.AiRelationships
commentId: F:TinyLife.PerSaveOptions.AiRelationships
id: AiRelationships
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: AiRelationships
nameWithType: PerSaveOptions.AiRelationships
fullName: TinyLife.PerSaveOptions.AiRelationships
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiRelationships
path: ../TinyLife/Options.cs
startLine: 467
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the AI should be able to build complex relationships.\nThis option is intended to be used through <xref href=\"TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataMember]
public bool AiRelationships
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public AiRelationships As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.MaxRegularVisitors
commentId: F:TinyLife.PerSaveOptions.MaxRegularVisitors
id: MaxRegularVisitors
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: MaxRegularVisitors
nameWithType: PerSaveOptions.MaxRegularVisitors
fullName: TinyLife.PerSaveOptions.MaxRegularVisitors
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaxRegularVisitors
path: ../TinyLife/Options.cs
startLine: 473
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe maximum amount of regular visitors that the current map can have.\nWhen this value is changed, <xref href=\"TinyLife.World.Map.UpdateExternalPeople(System.Action%7bSystem.Single%7d)\" data-throw-if-not-resolved=\"false\"></xref> should be called to apply it.\n"
example: []
syntax:
content: >-
[DataMember]
public int MaxRegularVisitors
return:
type: System.Int32
content.vb: >-
<DataMember>
Public MaxRegularVisitors As Integer
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.LoadedMods
commentId: F:TinyLife.PerSaveOptions.LoadedMods
id: LoadedMods
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: LoadedMods
nameWithType: PerSaveOptions.LoadedMods
fullName: TinyLife.PerSaveOptions.LoadedMods
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LoadedMods
path: ../TinyLife/Options.cs
startLine: 479
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nA set of mod ids, mapped to their names, of mods that were loaded the last time this save game was played.\nThis dictionary is used to display a warning when a save is loaded with missing mods.\n"
example: []
syntax:
content: >-
[DataMember]
public Dictionary<string, string> LoadedMods
return:
type: System.Collections.Generic.Dictionary{System.String,System.String}
content.vb: >-
<DataMember>
Public LoadedMods As Dictionary(Of String, String)
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.MapName
commentId: F:TinyLife.PerSaveOptions.MapName
id: MapName
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: MapName
nameWithType: PerSaveOptions.MapName
fullName: TinyLife.PerSaveOptions.MapName
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapName
path: ../TinyLife/Options.cs
startLine: 485
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe name of the map that is used in this save game.\nDo not change this value, or the save will likely be corrupted.\n"
example: []
syntax:
content: >-
[DataMember]
public string MapName
return:
type: System.String
content.vb: >-
<DataMember>
Public MapName As String
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.MapCustom
commentId: F:TinyLife.PerSaveOptions.MapCustom
id: MapCustom
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: MapCustom
nameWithType: PerSaveOptions.MapCustom
fullName: TinyLife.PerSaveOptions.MapCustom
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapCustom
path: ../TinyLife/Options.cs
startLine: 491
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nWhether the map that is used in this save game is a custom map.\nDo not change this value, or the save will likely be corrupted.\n"
example: []
syntax:
content: >-
[DataMember]
public bool MapCustom
return:
type: System.Boolean
content.vb: >-
<DataMember>
Public MapCustom As Boolean
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.PlayedLifespan
commentId: F:TinyLife.PerSaveOptions.PlayedLifespan
id: PlayedLifespan
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: PlayedLifespan
nameWithType: PerSaveOptions.PlayedLifespan
fullName: TinyLife.PerSaveOptions.PlayedLifespan
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlayedLifespan
path: ../TinyLife/Options.cs
startLine: 497
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe <xref href=\"TinyLife.Objects.LifeSpan\" data-throw-if-not-resolved=\"false\"></xref> that a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> who is in the currently played household should have.\nThis value is used by <xref href=\"TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup%2cTinyLife.Objects.LifeSpan)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataMember]
public LifeSpan PlayedLifespan
return:
type: TinyLife.Objects.LifeSpan
content.vb: >-
<DataMember>
Public PlayedLifespan As LifeSpan
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.OtherLifespan
commentId: F:TinyLife.PerSaveOptions.OtherLifespan
id: OtherLifespan
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: OtherLifespan
nameWithType: PerSaveOptions.OtherLifespan
fullName: TinyLife.PerSaveOptions.OtherLifespan
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OtherLifespan
path: ../TinyLife/Options.cs
startLine: 503
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThe <xref href=\"TinyLife.Objects.LifeSpan\" data-throw-if-not-resolved=\"false\"></xref> that a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> who is not in the currently played household should have.\nThis value is used by <xref href=\"TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup%2cTinyLife.Objects.LifeSpan)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataMember]
public LifeSpan OtherLifespan
return:
type: TinyLife.Objects.LifeSpan
content.vb: >-
<DataMember>
Public OtherLifespan As LifeSpan
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.Save(System.String)
commentId: M:TinyLife.PerSaveOptions.Save(System.String)
id: Save(System.String)
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: Save(string)
nameWithType: PerSaveOptions.Save(string)
fullName: TinyLife.PerSaveOptions.Save(string)
type: Method
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Save
path: ../TinyLife/Options.cs
startLine: 508
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nSaves the options to the default options file path for the given save\n"
example: []
syntax:
content: public void Save(string save)
parameters:
- id: save
type: System.String
content.vb: Public Sub Save(save As String)
overload: TinyLife.PerSaveOptions.Save*
nameWithType.vb: PerSaveOptions.Save(String)
fullName.vb: TinyLife.PerSaveOptions.Save(String)
name.vb: Save(String)
- uid: TinyLife.PerSaveOptions.Load(System.String)
commentId: M:TinyLife.PerSaveOptions.Load(System.String)
id: Load(System.String)
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: Load(string)
nameWithType: PerSaveOptions.Load(string)
fullName: TinyLife.PerSaveOptions.Load(string)
type: Method
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Load
path: ../TinyLife/Options.cs
startLine: 516
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nLoads the options from the default options file path for the given save\n"
example: []
syntax:
content: public static PerSaveOptions Load(string save)
parameters:
- id: save
type: System.String
return:
type: TinyLife.PerSaveOptions
content.vb: Public Shared Function Load(save As String) As PerSaveOptions
overload: TinyLife.PerSaveOptions.Load*
nameWithType.vb: PerSaveOptions.Load(String)
fullName.vb: TinyLife.PerSaveOptions.Load(String)
name.vb: Load(String)
references:
- uid: TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem,System.Boolean,TinyLife.Uis.OptionsMenu.Tab)
commentId: M:TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem,System.Boolean,TinyLife.Uis.OptionsMenu.Tab)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: Initialize(UiSystem, bool, Tab)
nameWithType: OptionsMenu.Initialize(UiSystem, bool, OptionsMenu.Tab)
fullName: TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem, bool, TinyLife.Uis.OptionsMenu.Tab)
nameWithType.vb: OptionsMenu.Initialize(UiSystem, Boolean, OptionsMenu.Tab)
fullName.vb: TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem, Boolean, TinyLife.Uis.OptionsMenu.Tab)
name.vb: Initialize(UiSystem, Boolean, Tab)
spec.csharp:
- uid: TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem,System.Boolean,TinyLife.Uis.OptionsMenu.Tab)
name: Initialize
- name: (
- uid: MLEM.Ui.UiSystem
name: UiSystem
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: TinyLife.Uis.OptionsMenu.Tab
name: Tab
- name: )
spec.vb:
- uid: TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem,System.Boolean,TinyLife.Uis.OptionsMenu.Tab)
name: Initialize
- name: (
- uid: MLEM.Ui.UiSystem
name: UiSystem
isExternal: true
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: TinyLife.Uis.OptionsMenu.Tab
name: Tab
- name: )
- uid: TinyLife.PerSaveOptions.Instance
commentId: P:TinyLife.PerSaveOptions.Instance
name: Instance
nameWithType: PerSaveOptions.Instance
fullName: TinyLife.PerSaveOptions.Instance
- uid: TinyLife.GameImpl.Map
commentId: P:TinyLife.GameImpl.Map
name: Map
nameWithType: GameImpl.Map
fullName: TinyLife.GameImpl.Map
- uid: TinyLife
commentId: N:TinyLife
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent: MLEM.Data.Json
isExternal: true
name: JsonTypeSafeGenericDataHolder
nameWithType: JsonTypeSafeGenericDataHolder
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- uid: MLEM.Misc.IGenericDataHolder
commentId: T:MLEM.Misc.IGenericDataHolder
parent: MLEM.Misc
isExternal: true
name: IGenericDataHolder
nameWithType: IGenericDataHolder
fullName: MLEM.Misc.IGenericDataHolder
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: SetData(string, object)
nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, object)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, object)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(String, Object)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(String, Object)
name.vb: SetData(String, Object)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
isExternal: true
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
isExternal: true
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
definition: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
href: https://learn.microsoft.com/dotnet/api/system.string
name: SetData<T>(string, T)
nameWithType: JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: GetData<T>(string)
nameWithType: JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
name.vb: GetData(Of T)(String)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
name: GetDataKeys()
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name: GetDataKeys
isExternal: true
- name: (
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name: GetDataKeys
isExternal: true
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: TinyLife.PerSaveOptions.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<PerSaveOptions>(PerSaveOptions)
nameWithType: Extensions.JsonCopy<PerSaveOptions>(PerSaveOptions)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.PerSaveOptions>(TinyLife.PerSaveOptions)
nameWithType.vb: Extensions.JsonCopy(Of PerSaveOptions)(PerSaveOptions)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.PerSaveOptions)(TinyLife.PerSaveOptions)
name.vb: JsonCopy(Of PerSaveOptions)(PerSaveOptions)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.PerSaveOptions)
name: JsonCopy
- name: <
- uid: TinyLife.PerSaveOptions
name: PerSaveOptions
- name: '>'
- name: (
- uid: TinyLife.PerSaveOptions
name: PerSaveOptions
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.PerSaveOptions)
name: JsonCopy
- name: (
- name: Of
- name: " "
- uid: TinyLife.PerSaveOptions
name: PerSaveOptions
- name: )
- name: (
- uid: TinyLife.PerSaveOptions
name: PerSaveOptions
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: MLEM.Data.Json
commentId: N:MLEM.Data.Json
isExternal: true
name: MLEM.Data.Json
nameWithType: MLEM.Data.Json
fullName: MLEM.Data.Json
spec.csharp:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Data
name: Data
isExternal: true
- name: .
- uid: MLEM.Data.Json
name: Json
isExternal: true
spec.vb:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Data
name: Data
isExternal: true
- name: .
- uid: MLEM.Data.Json
name: Json
isExternal: true
- uid: MLEM.Misc
commentId: N:MLEM.Misc
isExternal: true
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
spec.csharp:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Misc
name: Misc
isExternal: true
spec.vb:
- uid: MLEM
name: MLEM
isExternal: true
- name: .
- uid: MLEM.Misc
name: Misc
isExternal: true
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: SetData<T>(string, T)
nameWithType: JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
- uid: TinyLife.PerSaveOptions
commentId: T:TinyLife.PerSaveOptions
parent: TinyLife
name: PerSaveOptions
nameWithType: PerSaveOptions
fullName: TinyLife.PerSaveOptions
- uid: TinyLife.PerSaveOptions.Instance*
commentId: Overload:TinyLife.PerSaveOptions.Instance
name: Instance
nameWithType: PerSaveOptions.Instance
fullName: TinyLife.PerSaveOptions.Instance
- uid: TinyLife.Uis.InGameHint.Name
commentId: F:TinyLife.Uis.InGameHint.Name
name: Name
nameWithType: InGameHint.Name
fullName: TinyLife.Uis.InGameHint.Name
- uid: TinyLife.Uis.InGameHint
commentId: T:TinyLife.Uis.InGameHint
parent: TinyLife.Uis
name: InGameHint
nameWithType: InGameHint
fullName: TinyLife.Uis.InGameHint
- uid: System.Collections.Generic.HashSet{System.String}
commentId: T:System.Collections.Generic.HashSet{System.String}
parent: System.Collections.Generic
definition: System.Collections.Generic.HashSet`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
name: HashSet<string>
nameWithType: HashSet<string>
fullName: System.Collections.Generic.HashSet<string>
nameWithType.vb: HashSet(Of String)
fullName.vb: System.Collections.Generic.HashSet(Of String)
name.vb: HashSet(Of String)
spec.csharp:
- uid: System.Collections.Generic.HashSet`1
name: HashSet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Collections.Generic.HashSet`1
name: HashSet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: TinyLife.Uis
commentId: N:TinyLife.Uis
name: TinyLife.Uis
nameWithType: TinyLife.Uis
fullName: TinyLife.Uis
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Uis
name: Uis
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Uis
name: Uis
- uid: System.Collections.Generic.HashSet`1
commentId: T:System.Collections.Generic.HashSet`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
name: HashSet<T>
nameWithType: HashSet<T>
fullName: System.Collections.Generic.HashSet<T>
nameWithType.vb: HashSet(Of T)
fullName.vb: System.Collections.Generic.HashSet(Of T)
name.vb: HashSet(Of T)
spec.csharp:
- uid: System.Collections.Generic.HashSet`1
name: HashSet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.HashSet`1
name: HashSet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: TinyLife.Tools.PlayModeTool.SelectedPerson
commentId: P:TinyLife.Tools.PlayModeTool.SelectedPerson
name: SelectedPerson
nameWithType: PlayModeTool.SelectedPerson
fullName: TinyLife.Tools.PlayModeTool.SelectedPerson
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: TinyLife.GameImpl.CurrentHousehold
commentId: P:TinyLife.GameImpl.CurrentHousehold
name: CurrentHousehold
nameWithType: GameImpl.CurrentHousehold
fullName: TinyLife.GameImpl.CurrentHousehold
- uid: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: CanDoImportantAction(ActionInfo, bool)
nameWithType: ActionType.CanDoImportantAction(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo, bool)
nameWithType.vb: ActionType.CanDoImportantAction(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanDoImportantAction(ActionInfo, Boolean)
spec.csharp:
- uid: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
name: CanDoImportantAction
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
name: CanDoImportantAction
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
commentId: M:TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
name: GetSkillPriorityMod(Person, SkillType)
nameWithType: ActionType.GetSkillPriorityMod(Person, SkillType)
fullName: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person, TinyLife.Skills.SkillType)
spec.csharp:
- uid: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
name: GetSkillPriorityMod
- name: (
- uid: TinyLife.Objects.Person
name: Person
- name: ','
- name: " "
- uid: TinyLife.Skills.SkillType
name: SkillType
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
name: GetSkillPriorityMod
- name: (
- uid: TinyLife.Objects.Person
name: Person
- name: ','
- name: " "
- uid: TinyLife.Skills.SkillType
name: SkillType
- name: )
- uid: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: CanDoSocialAction(ActionInfo, bool)
nameWithType: ActionType.CanDoSocialAction(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo, bool)
nameWithType.vb: ActionType.CanDoSocialAction(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanDoSocialAction(ActionInfo, Boolean)
spec.csharp:
- uid: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
name: CanDoSocialAction
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
name: CanDoSocialAction
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: IsReadyForRomance(ActionInfo, bool)
nameWithType: ActionType.IsReadyForRomance(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo, bool)
nameWithType.vb: ActionType.IsReadyForRomance(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsReadyForRomance(ActionInfo, Boolean)
spec.csharp:
- uid: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
name: IsReadyForRomance
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
name: IsReadyForRomance
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
commentId: M:TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: UpdateExternalPeople(Action<float>)
nameWithType: Map.UpdateExternalPeople(Action<float>)
fullName: TinyLife.World.Map.UpdateExternalPeople(System.Action<float>)
nameWithType.vb: Map.UpdateExternalPeople(Action(Of Single))
fullName.vb: TinyLife.World.Map.UpdateExternalPeople(System.Action(Of Single))
name.vb: UpdateExternalPeople(Action(Of Single))
spec.csharp:
- uid: TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
name: UpdateExternalPeople
- name: (
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
name: UpdateExternalPeople
- name: (
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- name: )
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: System.Collections.Generic.Dictionary{System.String,System.String}
commentId: T:System.Collections.Generic.Dictionary{System.String,System.String}
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<string, string>
nameWithType: Dictionary<string, string>
fullName: System.Collections.Generic.Dictionary<string, string>
nameWithType.vb: Dictionary(Of String, String)
fullName.vb: System.Collections.Generic.Dictionary(Of String, String)
name.vb: Dictionary(Of String, String)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<TKey, TValue>
nameWithType: Dictionary<TKey, TValue>
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
nameWithType.vb: Dictionary(Of TKey, TValue)
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
name.vb: Dictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: )
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: TinyLife.Objects.LifeSpan
commentId: T:TinyLife.Objects.LifeSpan
parent: TinyLife.Objects
name: LifeSpan
nameWithType: LifeSpan
fullName: TinyLife.Objects.LifeSpan
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
commentId: M:TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
name: GetDaysBeforeAging(AgeGroup, LifeSpan)
nameWithType: Extensions.GetDaysBeforeAging(AgeGroup, LifeSpan)
fullName: TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup, TinyLife.Objects.LifeSpan)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
name: GetDaysBeforeAging
- name: (
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
- name: ','
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
name: GetDaysBeforeAging
- name: (
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
- name: ','
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
- name: )
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
- uid: TinyLife.PerSaveOptions.Save*
commentId: Overload:TinyLife.PerSaveOptions.Save
name: Save
nameWithType: PerSaveOptions.Save
fullName: TinyLife.PerSaveOptions.Save
- uid: TinyLife.PerSaveOptions.Load*
commentId: Overload:TinyLife.PerSaveOptions.Load
name: Load
nameWithType: PerSaveOptions.Load
fullName: TinyLife.PerSaveOptions.Load