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
- 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
- TinyLife.PerSaveOptions.Load(System.String)
2022-03-09 16:13:05 +01:00
- TinyLife.PerSaveOptions.LoadedMods
2022-05-24 13:36:05 +02:00
- TinyLife.PerSaveOptions.MapCustom
2022-03-09 16:13:05 +01:00
- TinyLife.PerSaveOptions.MapName
2021-08-30 20:44:32 +02:00
- TinyLife.PerSaveOptions.MaxRegularVisitors
2022-07-04 16:50:43 +02:00
- TinyLife.PerSaveOptions.OtherLifespan
- TinyLife.PerSaveOptions.PlayedLifespan
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : PerSaveOptions
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 420
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife
2022-07-04 16:50:43 +02:00
summary : "\nThe 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.\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"
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 :
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
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 : [ ]
- 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
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Instance
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 427
2021-08-04 06:51:12 +02:00
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
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2023-01-19 11:28:13 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : DisplayedHints
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 433
2023-01-19 11:28:13 +01:00
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 : [ ]
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : DisableAiSelected
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 439
2021-08-04 06:51:12 +02:00
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
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : DisableAiHousehold
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 444
2021-08-04 06:51:12 +02:00
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
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : AiImportantActions
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 450
2021-08-04 06:51:12 +02:00
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
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : AiSkillBuilding
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 456
2021-08-04 06:51:12 +02:00
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 : [ ]
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-03-09 16:13:05 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : AiRelationships
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 462
2022-03-09 16:13:05 +01:00
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 : [ ]
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-30 20:44:32 +02:00
id : MaxRegularVisitors
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 468
2021-08-30 20:44:32 +02:00
assemblies :
- Tiny Life
namespace : TinyLife
2022-03-09 16:13:05 +01:00
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"
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-03-09 16:13:05 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : LoadedMods
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 474
2022-03-09 16:13:05 +01:00
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
2023-03-30 18:07:55 +02:00
branch : main
2022-03-09 16:13:05 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : MapName
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 480
2022-03-09 16:13:05 +01:00
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 : [ ]
2022-05-24 13:36:05 +02:00
- 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
2023-03-30 18:07:55 +02:00
branch : main
2022-05-24 13:36:05 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : MapCustom
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 486
2022-05-24 13:36:05 +02:00
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 : [ ]
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-04 16:50:43 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : PlayedLifespan
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 492
2022-07-04 16:50:43 +02:00
assemblies :
- Tiny Life
namespace : TinyLife
2023-04-26 14:51:19 +02:00
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"
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-04 16:50:43 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : OtherLifespan
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 498
2022-07-04 16:50:43 +02:00
assemblies :
- Tiny Life
namespace : TinyLife
2023-04-26 14:51:19 +02:00
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"
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 : [ ]
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
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Save
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 503
2021-08-04 06:51:12 +02:00
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*
2023-03-30 18:07:55 +02:00
nameWithType.vb : PerSaveOptions.Save(String)
fullName.vb : TinyLife.PerSaveOptions.Save(String)
name.vb : Save(String)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions.Load(System.String)
commentId : M:TinyLife.PerSaveOptions.Load(System.String)
id : Load(System.String)
parent : TinyLife.PerSaveOptions
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Load(string)
nameWithType : PerSaveOptions.Load(string)
fullName : TinyLife.PerSaveOptions.Load(string)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Options.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Load
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Options.cs
2023-05-04 13:26:42 +02:00
startLine : 511
2021-08-04 06:51:12 +02:00
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*
2023-03-30 18:07:55 +02:00
nameWithType.vb : PerSaveOptions.Load(String)
fullName.vb : TinyLife.PerSaveOptions.Load(String)
name.vb : Load(String)
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
2023-03-30 18:07:55 +02:00
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 : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.PerSaveOptions.Instance
commentId : P:TinyLife.PerSaveOptions.Instance
2023-03-30 18:07:55 +02:00
name : Instance
nameWithType : PerSaveOptions.Instance
fullName : TinyLife.PerSaveOptions.Instance
2021-08-04 06:51:12 +02:00
- uid : TinyLife.GameImpl.Map
commentId : P:TinyLife.GameImpl.Map
2023-03-30 18:07:55 +02:00
name : Map
nameWithType : GameImpl.Map
fullName : TinyLife.GameImpl.Map
2021-08-04 06:51:12 +02:00
- uid : TinyLife
commentId : N : TinyLife
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
2021-11-23 16:24:04 +01:00
- 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
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 : 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)
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
2021-08-04 06:51:12 +02:00
name : SetData
isExternal : true
- 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
- 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 :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
2021-08-04 06:51:12 +02:00
name : SetData
isExternal : true
- name : (
- 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 : " "
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 : )
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)
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
- name : <
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
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
- name : (
- name : Of
- name : " "
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
- name : )
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.PerSaveOptions
name : PerSaveOptions
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)
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
- 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
- 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
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
2021-08-04 06:51:12 +02:00
- 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
2023-01-19 11:28:13 +01:00
- uid : TinyLife.Uis.InGameHint.Name
commentId : F: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
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
name : TinyLife.Uis
nameWithType : TinyLife.Uis
fullName : TinyLife.Uis
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Uis
name : Uis
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Uis
name : Uis
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 : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2023-01-19 11:28:13 +01:00
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2023-03-30 18:07:55 +02:00
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.Tools.PlayModeTool.SelectedPerson
commentId : P: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
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
2023-03-30 18:07:55 +02:00
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 : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
commentId : M:TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.Person,TinyLife.Skills.SkillType)
2023-03-30 18:07:55 +02:00
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 : )
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
2023-03-30 18:07:55 +02:00
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 : )
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
2023-03-30 18:07:55 +02:00
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 : )
2022-03-09 16:13:05 +01:00
- uid : TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
commentId : M:TinyLife.World.Map.UpdateExternalPeople(System.Action{System.Single})
2021-08-30 20:44:32 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
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 : )
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 : )
2021-08-04 06:51:12 +02:00
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
2022-07-04 16:50:43 +02:00
- 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
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)
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
- name : (
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Objects.AgeGroup
name : AgeGroup
- name : ','
- name : " "
- uid : TinyLife.Objects.LifeSpan
name : LifeSpan
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
- name : (
2023-04-26 14:51:19 +02:00
- uid : TinyLife.Objects.AgeGroup
name : AgeGroup
- name : ','
- name : " "
- uid : TinyLife.Objects.LifeSpan
name : LifeSpan
2023-03-30 18:07:55 +02:00
- name : )
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
2022-03-09 16:13:05 +01:00
- uid : TinyLife.PerSaveOptions.Save*
commentId : Overload:TinyLife.PerSaveOptions.Save
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
name : Load
nameWithType : PerSaveOptions.Load
fullName : TinyLife.PerSaveOptions.Load