2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.PerSaveOptions
commentId : T:TinyLife.PerSaveOptions
id : PerSaveOptions
parent : TinyLife
children :
- TinyLife.PerSaveOptions.AiImportantActions
2022-03-09 16:13:05 +01:00
- TinyLife.PerSaveOptions.AiRelationships
2021-08-04 06:51:12 +02:00
- TinyLife.PerSaveOptions.AiSkillBuilding
2024-06-09 17:05:30 +02:00
- TinyLife.PerSaveOptions.Difficulty
2021-08-04 06:51:12 +02:00
- TinyLife.PerSaveOptions.DisableAiHousehold
- TinyLife.PerSaveOptions.DisableAiSelected
2023-01-19 11:28:13 +01:00
- TinyLife.PerSaveOptions.DisplayedHints
2021-08-04 06:51:12 +02:00
- TinyLife.PerSaveOptions.Instance
2023-07-20 14:27:20 +02:00
- TinyLife.PerSaveOptions.LastGameVersion
- TinyLife.PerSaveOptions.LastMap
2024-07-13 14:54:00 +02:00
- TinyLife.PerSaveOptions.LastPlayedLot
2023-12-06 13:25:52 +01:00
- TinyLife.PerSaveOptions.Load(System.String,System.Boolean)
2022-03-09 16:13:05 +01:00
- TinyLife.PerSaveOptions.LoadedMods
2023-07-20 14:27:20 +02:00
- TinyLife.PerSaveOptions.Maps
2021-08-30 20:44:32 +02:00
- TinyLife.PerSaveOptions.MaxRegularVisitors
2024-10-26 13:15:46 +02:00
- TinyLife.PerSaveOptions.Migrations
2022-07-04 16:50:43 +02:00
- TinyLife.PerSaveOptions.OtherLifespan
- TinyLife.PerSaveOptions.PlayedLifespan
2024-03-09 19:49:55 +01:00
- TinyLife.PerSaveOptions.PopulateLots
2021-08-04 06:51:12 +02:00
- TinyLife.PerSaveOptions.Save(System.String)
langs :
- csharp
- vb
name : PerSaveOptions
nameWithType : PerSaveOptions
fullName : TinyLife.PerSaveOptions
type : Class
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
The game'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.
Note that <xref href="TinyLife.PerSaveOptions.Instance" data-throw-if-not-resolved="false"></xref> is null if there is no <xref href="TinyLife.GameImpl.CurrentMap" data-throw-if-not-resolved="false"></xref> loaded.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2021-11-23 16:24:04 +01:00
public class PerSaveOptions : JsonTypeSafeGenericDataHolder, IGenericDataHolder
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataContract>
2023-03-30 18:07:55 +02:00
Public Class PerSaveOptions Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
- 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 : [ ]
2024-10-26 13:15:46 +02:00
- uid : TinyLife.PerSaveOptions.Migrations
commentId : F:TinyLife.PerSaveOptions.Migrations
id : Migrations
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : Migrations
nameWithType : PerSaveOptions.Migrations
fullName : TinyLife.PerSaveOptions.Migrations
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
syntax :
content : public static readonly List<Migration<(PerSaveOptions Options, string Save)>> Migrations
return :
type : System.Collections.Generic.List{TinyLife.Utilities.Migration{System.ValueTuple{TinyLife.PerSaveOptions,System.String}}}
content.vb : Public Shared ReadOnly Migrations As List(Of Migration(Of (Options As PerSaveOptions, Save As String)))
2021-08-04 06:51:12 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
The static singleton instance of <xref href="TinyLife.PerSaveOptions" data-throw-if-not-resolved="false"></xref>.
Note that this value is null if there is no <xref href="TinyLife.GameImpl.CurrentMap" data-throw-if-not-resolved="false"></xref> loaded.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public static PerSaveOptions Instance { get; }
parameters : [ ]
return :
type : TinyLife.PerSaveOptions
2023-03-30 18:07:55 +02:00
content.vb : Public Shared Property Instance As PerSaveOptions
2021-08-04 06:51:12 +02:00
overload : TinyLife.PerSaveOptions.Instance*
2023-01-19 11:28:13 +01:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : The <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
2023-01-19 11:28:13 +01:00
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 : [ ]
2023-07-20 14:27:20 +02:00
- uid : TinyLife.PerSaveOptions.Maps
commentId : F:TinyLife.PerSaveOptions.Maps
id : Maps
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : Maps
nameWithType : PerSaveOptions.Maps
fullName : TinyLife.PerSaveOptions.Maps
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
2024-07-13 14:54:00 +02:00
summary : >-
The maps that this save contains.
Do not change this value, or the save will likely be corrupted. Instead, use <xref href="TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo%2cSystem.Action)" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)" data-throw-if-not-resolved="false"></xref>.
2023-07-20 14:27:20 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
2024-04-21 10:22:04 +02:00
public readonly List<PerSaveOptions.MapInfo> Maps
2023-07-20 14:27:20 +02:00
return :
2024-04-21 10:22:04 +02:00
type : System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo}
2023-07-20 14:27:20 +02:00
content.vb : >-
<DataMember>
2024-04-21 10:22:04 +02:00
Public ReadOnly Maps As List(Of PerSaveOptions.MapInfo)
2023-07-20 14:27:20 +02:00
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2021-08-04 06:51:12 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : Whether the AI of the <xref href="TinyLife.Tools.PlayModeTool.SelectedPerson" data-throw-if-not-resolved="false"></xref> should be disabled or not
2021-08-04 06:51:12 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : Whether the AI of everyone in the <xref href="TinyLife.GameImpl.CurrentHousehold" data-throw-if-not-resolved="false"></xref> should be disabled or not
2021-08-04 06:51:12 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
Whether the AI should be able to execute important options, like paying the bills.
This 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>.
2021-08-04 06:51:12 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
Whether the AI should be able to execute skill building actions like painting and programming.
2024-10-17 17:28:12 +02:00
This option is intended to be used through <xref href="TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike%2cTinyLife.Skills.SkillType%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
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 : [ ]
2022-03-09 16:13:05 +01:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
Whether the AI should be able to build complex relationships.
This 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>.
2022-03-09 16:13:05 +01:00
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 : [ ]
2021-08-30 20:44:32 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
The maximum amount of regular visitors that the current map can have.
When this value is changed, <xref href="TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection%7bTinyLife.World.Map%7d%2cSystem.Action%7bSystem.String%7d%2cSystem.Action%7bSystem.Single%7d)" data-throw-if-not-resolved="false"></xref> should be called to apply it.
2021-08-30 20:44:32 +02:00
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 : [ ]
2022-03-09 16:13:05 +01:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
A set of mod ids, mapped to their names, of mods that were loaded the last time this save game was played.
This dictionary is used to display a warning when a save is loaded with missing mods.
2022-03-09 16:13:05 +01:00
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 : [ ]
2022-07-04 16:50:43 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
2024-06-09 17:05:30 +02:00
The <xref href="TinyLife.Objects.LifeSpan" data-throw-if-not-resolved="false"></xref> that a <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref> who is in the currently played household should have.
2024-01-07 16:53:47 +01:00
This value is used by <xref href="TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup%2cTinyLife.Objects.LifeSpan)" data-throw-if-not-resolved="false"></xref>.
2022-07-04 16:50:43 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : >-
2024-06-09 17:05:30 +02:00
The <xref href="TinyLife.Objects.LifeSpan" data-throw-if-not-resolved="false"></xref> that a <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref> who is not in the currently played household should have.
2024-01-07 16:53:47 +01:00
This value is used by <xref href="TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup%2cTinyLife.Objects.LifeSpan)" data-throw-if-not-resolved="false"></xref>.
2022-07-04 16:50:43 +02:00
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 : [ ]
2023-07-20 14:27:20 +02:00
- uid : TinyLife.PerSaveOptions.LastGameVersion
commentId : F:TinyLife.PerSaveOptions.LastGameVersion
id : LastGameVersion
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : LastGameVersion
nameWithType : PerSaveOptions.LastGameVersion
fullName : TinyLife.PerSaveOptions.LastGameVersion
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : The game version that this save was last loaded with.
2023-07-20 14:27:20 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public string LastGameVersion
return :
type : System.String
content.vb : >-
<DataMember>
Public LastGameVersion As String
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.PerSaveOptions.LastMap
commentId : F:TinyLife.PerSaveOptions.LastMap
id : LastMap
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : LastMap
nameWithType : PerSaveOptions.LastMap
fullName : TinyLife.PerSaveOptions.LastMap
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : The map that the camera was last on when playing this save, out of <xref href="TinyLife.PerSaveOptions.Maps" data-throw-if-not-resolved="false"></xref>.
2023-07-20 14:27:20 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public string LastMap
return :
type : System.String
content.vb : >-
<DataMember>
Public LastMap As String
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2024-07-13 14:54:00 +02:00
- uid : TinyLife.PerSaveOptions.LastPlayedLot
commentId : F:TinyLife.PerSaveOptions.LastPlayedLot
id : LastPlayedLot
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : LastPlayedLot
nameWithType : PerSaveOptions.LastPlayedLot
fullName : TinyLife.PerSaveOptions.LastPlayedLot
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
2024-08-08 15:31:03 +02:00
summary : The <xref href="TinyLife.World.Lot.Id" data-throw-if-not-resolved="false"></xref> of the <xref href="TinyLife.World.Lot" data-throw-if-not-resolved="false"></xref> that was last played.
example : [ ]
2024-07-13 14:54:00 +02:00
syntax :
content : >-
[ DataMember]
public Guid LastPlayedLot
return :
type : System.Guid
content.vb : >-
<DataMember>
Public LastPlayedLot As Guid
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2024-03-09 19:49:55 +01:00
- uid : TinyLife.PerSaveOptions.PopulateLots
commentId : F:TinyLife.PerSaveOptions.PopulateLots
id : PopulateLots
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : PopulateLots
nameWithType : PerSaveOptions.PopulateLots
fullName : TinyLife.PerSaveOptions.PopulateLots
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
2024-04-14 17:55:54 +02:00
summary : Whether lots should automatically be populated using <xref href="TinyLife.World.Map.PopulateLots" data-throw-if-not-resolved="false"></xref> every few in-game days.
example : [ ]
2024-03-09 19:49:55 +01:00
syntax :
content : >-
[ DataMember]
public bool PopulateLots
return :
type : System.Boolean
content.vb : >-
<DataMember>
Public PopulateLots As Boolean
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2024-06-09 17:05:30 +02:00
- uid : TinyLife.PerSaveOptions.Difficulty
commentId : F:TinyLife.PerSaveOptions.Difficulty
id : Difficulty
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
name : Difficulty
nameWithType : PerSaveOptions.Difficulty
fullName : TinyLife.PerSaveOptions.Difficulty
type : Field
assemblies :
- Tiny Life
namespace : TinyLife
summary : >-
This save's current <xref href="TinyLife.DifficultyModifier" data-throw-if-not-resolved="false"></xref>.
Note that difficulty should only apply to lots and people that pertain to the currently active household. This can be achieved easily through <xref href="TinyLife.Objects.PersonLike.Difficulty" data-throw-if-not-resolved="false"></xref>.
example : [ ]
syntax :
content : >-
[ DataMember]
public DifficultyModifier Difficulty
return :
type : TinyLife.DifficultyModifier
content.vb : >-
<DataMember>
Public Difficulty As DifficultyModifier
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions.Save(System.String)
commentId : M:TinyLife.PerSaveOptions.Save(System.String)
id : Save(System.String)
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Save(string)
nameWithType : PerSaveOptions.Save(string)
fullName : TinyLife.PerSaveOptions.Save(string)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : Saves the options to the default options file path for the given save
2021-08-04 06:51:12 +02:00
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*
2023-03-30 18:07:55 +02:00
nameWithType.vb : PerSaveOptions.Save(String)
fullName.vb : TinyLife.PerSaveOptions.Save(String)
name.vb : Save(String)
2023-12-06 13:25:52 +01:00
- uid : TinyLife.PerSaveOptions.Load(System.String,System.Boolean)
commentId : M:TinyLife.PerSaveOptions.Load(System.String,System.Boolean)
id : Load(System.String,System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
2023-12-06 13:25:52 +01:00
name : Load(string, bool)
nameWithType : PerSaveOptions.Load(string, bool)
fullName : TinyLife.PerSaveOptions.Load(string, bool)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife
2024-01-07 16:53:47 +01:00
summary : Loads the options from the default options file path for the given save
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-12-06 13:25:52 +01:00
content : public static PerSaveOptions Load(string save, bool create)
2021-08-04 06:51:12 +02:00
parameters :
- id : save
type : System.String
2023-12-06 13:25:52 +01:00
- id : create
type : System.Boolean
2021-08-04 06:51:12 +02:00
return :
type : TinyLife.PerSaveOptions
2023-12-06 13:25:52 +01:00
content.vb : Public Shared Function Load(save As String, create As Boolean) As PerSaveOptions
2021-08-04 06:51:12 +02:00
overload : TinyLife.PerSaveOptions.Load*
2023-12-06 13:25:52 +01:00
nameWithType.vb : PerSaveOptions.Load(String, Boolean)
fullName.vb : TinyLife.PerSaveOptions.Load(String, Boolean)
name.vb : Load(String, Boolean)
2021-08-04 06:51:12 +02:00
references :
2022-07-04 16:50:43 +02:00
- 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)
2021-08-04 06:51:12 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.OptionsMenu.html#TinyLife_Uis_OptionsMenu_Initialize_MLEM_Ui_UiSystem_System_Boolean_TinyLife_Uis_OptionsMenu_Tab_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.OptionsMenu.html#TinyLife_Uis_OptionsMenu_Initialize_MLEM_Ui_UiSystem_System_Boolean_TinyLife_Uis_OptionsMenu_Tab_
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.OptionsMenu.Tab.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
- uid : TinyLife.Uis.OptionsMenu.Initialize(MLEM.Ui.UiSystem,System.Boolean,TinyLife.Uis.OptionsMenu.Tab)
name : Initialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.OptionsMenu.html#TinyLife_Uis_OptionsMenu_Initialize_MLEM_Ui_UiSystem_System_Boolean_TinyLife_Uis_OptionsMenu_Tab_
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.OptionsMenu.Tab.html
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions.Instance
commentId : P:TinyLife.PerSaveOptions.Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Instance
2023-03-30 18:07:55 +02:00
name : Instance
nameWithType : PerSaveOptions.Instance
fullName : TinyLife.PerSaveOptions.Instance
2023-07-20 14:27:20 +02:00
- uid : TinyLife.GameImpl.CurrentMap
commentId : P:TinyLife.GameImpl.CurrentMap
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_CurrentMap
2023-07-20 14:27:20 +02:00
name : CurrentMap
nameWithType : GameImpl.CurrentMap
fullName : TinyLife.GameImpl.CurrentMap
2021-08-04 06:51:12 +02:00
- uid : TinyLife
commentId : N : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife
nameWithType : TinyLife
fullName : TinyLife
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
2021-08-04 06:51:12 +02:00
isExternal : true
2021-11-23 16:24:04 +01:00
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
2022-12-20 13:25:03 +01:00
- 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)
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-11-23 16:24:04 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2021-08-04 06:51:12 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-08-04 06:51:12 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
name : GetDataKeys()
2021-11-23 16:24:04 +01:00
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- 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)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
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)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.PerSaveOptions)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.PerSaveOptions)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2021-08-04 06:51:12 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name : System
nameWithType : System
fullName : System
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
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
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
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
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
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)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-08-04 06:51:12 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2024-10-26 13:15:46 +02:00
- uid : System.Collections.Generic.List{TinyLife.Utilities.Migration{System.ValueTuple{TinyLife.PerSaveOptions,System.String}}}
commentId : T:System.Collections.Generic.List{TinyLife.Utilities.Migration{System.ValueTuple{TinyLife.PerSaveOptions,System.String}}}
parent : System.Collections.Generic
definition : System.Collections.Generic.List`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<Migration<(PerSaveOptions Options, string Save)>>
nameWithType : List<Migration<(PerSaveOptions Options, string Save)>>
fullName : System.Collections.Generic.List<TinyLife.Utilities.Migration<(TinyLife.PerSaveOptions Options, string Save)>>
nameWithType.vb : List(Of Migration(Of (Options As PerSaveOptions, Save As String)))
fullName.vb : System.Collections.Generic.List(Of TinyLife.Utilities.Migration(Of (Options As TinyLife.PerSaveOptions, Save As String)))
name.vb : List(Of Migration(Of (Options As PerSaveOptions, Save As String)))
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : <
- name : (
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
href : TinyLife.PerSaveOptions.html
- name : " "
- uid : System.ValueTuple{TinyLife.PerSaveOptions,System.String}.Options
name : Options
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.persaveoptions,system.string-.options
- name : ','
- name : " "
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : " "
- uid : System.ValueTuple{TinyLife.PerSaveOptions,System.String}.Save
name : Save
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.persaveoptions,system.string-.save
- name : )
- name : '>'
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : (
- name : Of
- name : " "
- name : (
- uid : System.ValueTuple{TinyLife.PerSaveOptions,System.String}.Options
name : Options
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.persaveoptions,system.string-.options
- name : " "
- name : As
- name : " "
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
href : TinyLife.PerSaveOptions.html
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.PerSaveOptions,System.String}.Save
name : Save
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.persaveoptions,system.string-.save
- name : " "
- name : As
- name : " "
- uid : System.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- name : )
- name : )
- uid : System.Collections.Generic.List`1
commentId : T:System.Collections.Generic.List`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<T>
nameWithType : List<T>
fullName : System.Collections.Generic.List<T>
nameWithType.vb : List(Of T)
fullName.vb : System.Collections.Generic.List(Of T)
name.vb : List(Of T)
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-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
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions
commentId : T:TinyLife.PerSaveOptions
parent : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2021-08-04 06:51:12 +02:00
name : PerSaveOptions
nameWithType : PerSaveOptions
fullName : TinyLife.PerSaveOptions
- uid : TinyLife.PerSaveOptions.Instance*
commentId : Overload:TinyLife.PerSaveOptions.Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Instance
2021-08-04 06:51:12 +02:00
name : Instance
nameWithType : PerSaveOptions.Instance
fullName : TinyLife.PerSaveOptions.Instance
2023-01-19 11:28:13 +01:00
- uid : TinyLife.Uis.InGameHint.Name
commentId : F:TinyLife.Uis.InGameHint.Name
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.InGameHint.html#TinyLife_Uis_InGameHint_Name
2023-03-30 18:07:55 +02:00
name : Name
nameWithType : InGameHint.Name
fullName : TinyLife.Uis.InGameHint.Name
2023-01-19 11:28:13 +01:00
- uid : TinyLife.Uis.InGameHint
commentId : T:TinyLife.Uis.InGameHint
parent : TinyLife.Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.InGameHint.html
2023-01-19 11:28:13 +01:00
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
name : HashSet<string>
nameWithType : HashSet<string>
fullName : System.Collections.Generic.HashSet<string>
2023-01-19 11:28:13 +01:00
nameWithType.vb : HashSet(Of String)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.Generic.HashSet(Of String)
2023-01-19 11:28:13 +01:00
name.vb : HashSet(Of String)
spec.csharp :
- uid : System.Collections.Generic.HashSet`1
name : HashSet
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
2023-01-19 11:28:13 +01:00
- name : <
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2023-01-19 11:28:13 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2023-01-19 11:28:13 +01:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.HashSet`1
name : HashSet
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name : (
- name : Of
- name : " "
2023-01-19 11:28:13 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2023-01-19 11:28:13 +01:00
- name : )
- uid : TinyLife.Uis
commentId : N : TinyLife.Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-01-19 11:28:13 +01:00
name : TinyLife.Uis
nameWithType : TinyLife.Uis
fullName : TinyLife.Uis
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis
name : Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Uis
name : Uis
2024-01-07 16:53:47 +01:00
href : TinyLife.Uis.html
2023-01-19 11:28:13 +01:00
- uid : System.Collections.Generic.HashSet`1
commentId : T:System.Collections.Generic.HashSet`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
2023-01-19 11:28:13 +01:00
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
2023-01-19 11:28:13 +01:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.HashSet`1
name : HashSet
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset-1
- name : (
- name : Of
- name : " "
2023-01-19 11:28:13 +01:00
- name : T
- name : )
2024-07-13 14:54:00 +02:00
- uid : TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
commentId : M:TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
isExternal : true
href : TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
name : AddMapToSave(MapInfo, Action)
nameWithType : GameImpl.AddMapToSave(PerSaveOptions.MapInfo, Action)
fullName : TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo, System.Action)
spec.csharp :
- uid : TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
name : AddMapToSave
href : TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
- name : (
- uid : TinyLife.PerSaveOptions.MapInfo
name : MapInfo
href : TinyLife.PerSaveOptions.MapInfo.html
- name : ','
- name : " "
- uid : System.Action
name : Action
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.action
- name : )
spec.vb :
- uid : TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
name : AddMapToSave
href : TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
- name : (
- uid : TinyLife.PerSaveOptions.MapInfo
name : MapInfo
href : TinyLife.PerSaveOptions.MapInfo.html
- name : ','
- name : " "
- uid : System.Action
name : Action
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.action
- name : )
- uid : TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
commentId : M:TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
href : TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
name : RemoveMapFromSave(Map)
nameWithType : GameImpl.RemoveMapFromSave(Map)
fullName : TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
spec.csharp :
- uid : TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
name : RemoveMapFromSave
href : TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
- name : (
- uid : TinyLife.World.Map
name : Map
href : TinyLife.World.Map.html
- name : )
spec.vb :
- uid : TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
name : RemoveMapFromSave
href : TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
- name : (
- uid : TinyLife.World.Map
name : Map
href : TinyLife.World.Map.html
- name : )
2024-04-21 10:22:04 +02:00
- uid : System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo}
commentId : T:System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo}
2023-07-20 14:27:20 +02:00
parent : System.Collections.Generic
2024-04-21 10:22:04 +02:00
definition : System.Collections.Generic.List`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<PerSaveOptions.MapInfo>
nameWithType : List<PerSaveOptions.MapInfo>
fullName : System.Collections.Generic.List<TinyLife.PerSaveOptions.MapInfo>
nameWithType.vb : List(Of PerSaveOptions.MapInfo)
fullName.vb : System.Collections.Generic.List(Of TinyLife.PerSaveOptions.MapInfo)
name.vb : List(Of PerSaveOptions.MapInfo)
2023-07-20 14:27:20 +02:00
spec.csharp :
2024-04-21 10:22:04 +02:00
- uid : System.Collections.Generic.List`1
name : List
2023-07-20 14:27:20 +02:00
isExternal : true
2024-04-21 10:22:04 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2023-07-20 14:27:20 +02:00
- name : <
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2023-07-20 14:27:20 +02:00
- name : .
- uid : TinyLife.PerSaveOptions.MapInfo
name : MapInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.MapInfo.html
2023-07-20 14:27:20 +02:00
- name : '>'
spec.vb :
2024-04-21 10:22:04 +02:00
- uid : System.Collections.Generic.List`1
name : List
2023-07-20 14:27:20 +02:00
isExternal : true
2024-04-21 10:22:04 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2023-07-20 14:27:20 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html
2023-07-20 14:27:20 +02:00
- name : .
- uid : TinyLife.PerSaveOptions.MapInfo
name : MapInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.MapInfo.html
2023-07-20 14:27:20 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Tools.PlayModeTool.SelectedPerson
commentId : P:TinyLife.Tools.PlayModeTool.SelectedPerson
2024-01-07 16:53:47 +01:00
href : TinyLife.Tools.PlayModeTool.html#TinyLife_Tools_PlayModeTool_SelectedPerson
2023-03-30 18:07:55 +02:00
name : SelectedPerson
nameWithType : PlayModeTool.SelectedPerson
fullName : TinyLife.Tools.PlayModeTool.SelectedPerson
2021-08-04 06:51:12 +02:00
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2021-08-04 06:51:12 +02:00
- uid : TinyLife.GameImpl.CurrentHousehold
commentId : P:TinyLife.GameImpl.CurrentHousehold
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_CurrentHousehold
2023-03-30 18:07:55 +02:00
name : CurrentHousehold
nameWithType : GameImpl.CurrentHousehold
fullName : TinyLife.GameImpl.CurrentHousehold
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoImportantAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoImportantAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoImportantAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
commentId : M:TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
isExternal : true
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetSkillPriorityMod_TinyLife_Objects_PersonLike_TinyLife_Skills_SkillType_System_Boolean_
name : GetSkillPriorityMod(PersonLike, SkillType, bool)
nameWithType : ActionType.GetSkillPriorityMod(PersonLike, SkillType, bool)
fullName : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike, TinyLife.Skills.SkillType, bool)
nameWithType.vb : ActionType.GetSkillPriorityMod(PersonLike, SkillType, Boolean)
fullName.vb : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike, TinyLife.Skills.SkillType, Boolean)
name.vb : GetSkillPriorityMod(PersonLike, SkillType, Boolean)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
2023-03-30 18:07:55 +02:00
name : GetSkillPriorityMod
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetSkillPriorityMod_TinyLife_Objects_PersonLike_TinyLife_Skills_SkillType_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
2023-03-30 18:07:55 +02:00
name : GetSkillPriorityMod
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetSkillPriorityMod_TinyLife_Objects_PersonLike_TinyLife_Skills_SkillType_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
2023-03-30 18:07:55 +02:00
- name : )
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoSocialAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoSocialAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoSocialAction_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsReadyForRomance_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsReadyForRomance_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsReadyForRomance_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2023-07-20 14:27:20 +02:00
- uid : TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection{TinyLife.World.Map},System.Action{System.String},System.Action{System.Single})
commentId : M:TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection{TinyLife.World.Map},System.Action{System.String},System.Action{System.Single})
2021-08-30 20:44:32 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_UpdateExternalPeople_System_Collections_Generic_ICollection_TinyLife_World_Map__System_Action_System_String__System_Action_System_Single__
2023-07-20 14:27:20 +02:00
name : UpdateExternalPeople(ICollection<Map>, Action<string>, Action<float>)
nameWithType : Map.UpdateExternalPeople(ICollection<Map>, Action<string>, Action<float>)
fullName : TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection<TinyLife.World.Map>, System.Action<string>, System.Action<float>)
nameWithType.vb : Map.UpdateExternalPeople(ICollection(Of Map), Action(Of String), Action(Of Single))
fullName.vb : TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection(Of TinyLife.World.Map), System.Action(Of String), System.Action(Of Single))
name.vb : UpdateExternalPeople(ICollection(Of Map), Action(Of String), Action(Of Single))
2023-03-30 18:07:55 +02:00
spec.csharp :
2023-07-20 14:27:20 +02:00
- uid : TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection{TinyLife.World.Map},System.Action{System.String},System.Action{System.Single})
2023-03-30 18:07:55 +02:00
name : UpdateExternalPeople
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_UpdateExternalPeople_System_Collections_Generic_ICollection_TinyLife_World_Map__System_Action_System_String__System_Action_System_Single__
2023-03-30 18:07:55 +02:00
- name : (
2023-07-20 14:27:20 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : <
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : '>'
- name : ','
- name : " "
- uid : System.Action`1
name : Action
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.action-1
- name : <
- uid : System.String
name : string
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : '>'
- name : ','
- name : " "
2023-03-30 18:07:55 +02:00
- 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 :
2023-07-20 14:27:20 +02:00
- uid : TinyLife.World.Map.UpdateExternalPeople(System.Collections.Generic.ICollection{TinyLife.World.Map},System.Action{System.String},System.Action{System.Single})
2023-03-30 18:07:55 +02:00
name : UpdateExternalPeople
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_UpdateExternalPeople_System_Collections_Generic_ICollection_TinyLife_World_Map__System_Action_System_String__System_Action_System_Single__
2023-03-30 18:07:55 +02:00
- name : (
2023-07-20 14:27:20 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2023-07-20 14:27:20 +02:00
- name : )
- name : ','
- 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.String
name : String
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
- name : )
- name : ','
- name : " "
2023-03-30 18:07:55 +02:00
- 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 : )
2021-08-30 20:44:32 +02:00
- uid : System.Int32
commentId : T:System.Int32
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int
nameWithType : int
fullName : int
nameWithType.vb : Integer
fullName.vb : Integer
name.vb : Integer
2022-03-09 16:13:05 +01:00
- 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
2023-03-30 18:07:55 +02:00
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>
2022-03-09 16:13:05 +01:00
nameWithType.vb : Dictionary(Of String, String)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.Generic.Dictionary(Of String, String)
2022-03-09 16:13:05 +01:00
name.vb : Dictionary(Of String, String)
spec.csharp :
- uid : System.Collections.Generic.Dictionary`2
name : Dictionary
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-03-09 16:13:05 +01:00
- name : <
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-03-09 16:13:05 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-03-09 16:13:05 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2022-03-09 16:13:05 +01:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.Dictionary`2
name : Dictionary
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name : (
- name : Of
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2022-03-09 16:13:05 +01:00
- name : )
- uid : System.Collections.Generic.Dictionary`2
commentId : T:System.Collections.Generic.Dictionary`2
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-03-09 16:13:05 +01:00
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2022-03-09 16:13:05 +01:00
- name : <
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- name : TValue
- name : '>'
spec.vb :
- uid : System.Collections.Generic.Dictionary`2
name : Dictionary
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name : (
- name : Of
- name : " "
2022-03-09 16:13:05 +01:00
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-03-09 16:13:05 +01:00
- name : TValue
- name : )
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects.LifeSpan
commentId : T:TinyLife.Objects.LifeSpan
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.LifeSpan.html
2022-07-04 16:50:43 +02:00
name : LifeSpan
nameWithType : LifeSpan
fullName : TinyLife.Objects.LifeSpan
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
2022-07-04 16:50:43 +02:00
parent : TinyLife.Objects
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
commentId : M:TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetDaysBeforeAging_TinyLife_Objects_AgeGroup_TinyLife_Objects_LifeSpan_
2023-04-26 14:51:19 +02:00
name : GetDaysBeforeAging(AgeGroup, LifeSpan)
nameWithType : Extensions.GetDaysBeforeAging(AgeGroup, LifeSpan)
fullName : TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup, TinyLife.Objects.LifeSpan)
2023-03-30 18:07:55 +02:00
spec.csharp :
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
2023-03-30 18:07:55 +02:00
name : GetDaysBeforeAging
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetDaysBeforeAging_TinyLife_Objects_AgeGroup_TinyLife_Objects_LifeSpan_
2023-03-30 18:07:55 +02:00
- name : (
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Objects.AgeGroup
name : AgeGroup
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.AgeGroup.html
2023-04-26 14:51:19 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.LifeSpan
name : LifeSpan
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.LifeSpan.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Utilities.Extensions.GetDaysBeforeAging(TinyLife.Objects.AgeGroup,TinyLife.Objects.LifeSpan)
2023-03-30 18:07:55 +02:00
name : GetDaysBeforeAging
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetDaysBeforeAging_TinyLife_Objects_AgeGroup_TinyLife_Objects_LifeSpan_
2023-03-30 18:07:55 +02:00
- name : (
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Objects.AgeGroup
name : AgeGroup
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.AgeGroup.html
2023-04-26 14:51:19 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.LifeSpan
name : LifeSpan
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.LifeSpan.html
2023-03-30 18:07:55 +02:00
- name : )
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-07-04 16:50:43 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2024-10-26 13:15:46 +02:00
- 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
2023-07-20 14:27:20 +02:00
- uid : TinyLife.PerSaveOptions.Maps
commentId : F:TinyLife.PerSaveOptions.Maps
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Maps
2023-07-20 14:27:20 +02:00
name : Maps
nameWithType : PerSaveOptions.Maps
fullName : TinyLife.PerSaveOptions.Maps
2024-08-08 15:31:03 +02:00
- uid : TinyLife.World.Lot.Id
commentId : F:TinyLife.World.Lot.Id
href : TinyLife.World.Lot.html#TinyLife_World_Lot_Id
name : Id
nameWithType : Lot.Id
fullName : TinyLife.World.Lot.Id
- uid : TinyLife.World.Lot
commentId : T:TinyLife.World.Lot
parent : TinyLife.World
href : TinyLife.World.Lot.html
name : Lot
nameWithType : Lot
fullName : TinyLife.World.Lot
2024-07-13 14:54:00 +02:00
- uid : System.Guid
commentId : T:System.Guid
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.guid
name : Guid
nameWithType : Guid
fullName : System.Guid
2024-08-08 15:31:03 +02:00
- uid : TinyLife.World
commentId : N : TinyLife.World
href : TinyLife.html
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
spec.csharp :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.World
name : World
href : TinyLife.World.html
spec.vb :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.World
name : World
href : TinyLife.World.html
2024-04-14 17:55:54 +02:00
- uid : TinyLife.World.Map.PopulateLots
commentId : M:TinyLife.World.Map.PopulateLots
href : TinyLife.World.Map.html#TinyLife_World_Map_PopulateLots
name : PopulateLots()
nameWithType : Map.PopulateLots()
fullName : TinyLife.World.Map.PopulateLots()
spec.csharp :
- uid : TinyLife.World.Map.PopulateLots
name : PopulateLots
href : TinyLife.World.Map.html#TinyLife_World_Map_PopulateLots
- name : (
- name : )
spec.vb :
- uid : TinyLife.World.Map.PopulateLots
name : PopulateLots
href : TinyLife.World.Map.html#TinyLife_World_Map_PopulateLots
- name : (
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.DifficultyModifier
commentId : T:TinyLife.DifficultyModifier
parent : TinyLife
href : TinyLife.DifficultyModifier.html
name : DifficultyModifier
nameWithType : DifficultyModifier
fullName : TinyLife.DifficultyModifier
- uid : TinyLife.Objects.PersonLike.Difficulty
commentId : P:TinyLife.Objects.PersonLike.Difficulty
parent : TinyLife.Objects.PersonLike
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Difficulty
name : Difficulty
nameWithType : PersonLike.Difficulty
fullName : TinyLife.Objects.PersonLike.Difficulty
2022-03-09 16:13:05 +01:00
- uid : TinyLife.PerSaveOptions.Save*
commentId : Overload:TinyLife.PerSaveOptions.Save
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Save_System_String_
2022-03-09 16:13:05 +01:00
name : Save
nameWithType : PerSaveOptions.Save
fullName : TinyLife.PerSaveOptions.Save
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions.Load*
commentId : Overload:TinyLife.PerSaveOptions.Load
2024-01-07 16:53:47 +01:00
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Load_System_String_System_Boolean_
2021-08-04 06:51:12 +02:00
name : Load
nameWithType : PerSaveOptions.Load
fullName : TinyLife.PerSaveOptions.Load