2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.LifeGoal
commentId : T:TinyLife.Goals.LifeGoal
id : LifeGoal
parent : TinyLife.Goals
children :
- TinyLife.Goals.LifeGoal.#ctor(System.String,TinyLife.PersonalityType,TinyLife.Goals.GoalSetInfo[])
- TinyLife.Goals.LifeGoal.AllowedAges
2022-07-04 16:50:43 +02:00
- TinyLife.Goals.LifeGoal.CapableCarpenter
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.LifeGoal.Chef
- TinyLife.Goals.LifeGoal.ComputerAddict
2023-07-20 14:27:20 +02:00
- TinyLife.Goals.LifeGoal.CreativeChild
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.LifeGoal.FriendOfEveryone
- TinyLife.Goals.LifeGoal.Goals
- TinyLife.Goals.LifeGoal.GymRat
- TinyLife.Goals.LifeGoal.HouseholdHero
- TinyLife.Goals.LifeGoal.IsCompleted(TinyLife.Objects.Person)
2022-03-09 16:13:05 +01:00
- TinyLife.Goals.LifeGoal.Millionaire
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.LifeGoal.Name
- TinyLife.Goals.LifeGoal.OnAdvanced
- TinyLife.Goals.LifeGoal.OnCompleted
2022-12-20 13:25:03 +01:00
- TinyLife.Goals.LifeGoal.PerfectPainter
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.LifeGoal.Register(TinyLife.Goals.LifeGoal)
- TinyLife.Goals.LifeGoal.RewardPersonality
2022-03-09 16:13:05 +01:00
- TinyLife.Goals.LifeGoal.SmartKid
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.LifeGoal.Stages
2023-12-06 13:25:52 +01:00
- TinyLife.Goals.LifeGoal.Writer
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : LifeGoal
nameWithType : LifeGoal
fullName : TinyLife.Goals.LifeGoal
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A life goal is a set of <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> instances that, when completed, result in a special <xref href="TinyLife.PersonalityType" data-throw-if-not-resolved="false"></xref> to be unlocked.
When a life goal is applied to a person, the <xref href="TinyLife.Goals.LifeGoal.Instance" data-throw-if-not-resolved="false"></xref> class is used.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
2024-10-26 13:15:46 +02:00
[ JsonConverter(typeof(MigratingStaticJsonConverter<LifeGoal>), new object[] { typeof(LifeGoal), "PrivateGoals", false })]
2021-10-14 20:30:40 +02:00
public class LifeGoal
content.vb : >-
2024-10-26 13:15:46 +02:00
<JsonConverter(GetType(MigratingStaticJsonConverter(Of LifeGoal)), New Object() { GetType(LifeGoal), "PrivateGoals", False })>
2021-10-14 20:30:40 +02:00
Public Class LifeGoal
inheritance :
- System.Object
inheritedMembers :
- 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.Goals.LifeGoal.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Goals.LifeGoal.Goals
commentId : F:TinyLife.Goals.LifeGoal.Goals
id : Goals
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Goals
nameWithType : LifeGoal.Goals
fullName : TinyLife.Goals.LifeGoal.Goals
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : A registry for all registered life goals in the game and mods
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public static readonly ReadOnlyDictionary<string, LifeGoal> Goals
2021-10-14 20:30:40 +02:00
return :
2022-05-24 13:36:05 +02:00
type : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.LifeGoal}
content.vb : Public Shared ReadOnly Goals As ReadOnlyDictionary(Of String, LifeGoal)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Chef
commentId : F:TinyLife.Goals.LifeGoal.Chef
id : Chef
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Chef
nameWithType : LifeGoal.Chef
fullName : TinyLife.Goals.LifeGoal.Chef
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal Chef
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly Chef As LifeGoal
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Goals.LifeGoal.SmartKid
commentId : F:TinyLife.Goals.LifeGoal.SmartKid
id : SmartKid
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : SmartKid
nameWithType : LifeGoal.SmartKid
fullName : TinyLife.Goals.LifeGoal.SmartKid
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal SmartKid
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly SmartKid As LifeGoal
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.HouseholdHero
commentId : F:TinyLife.Goals.LifeGoal.HouseholdHero
id : HouseholdHero
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : HouseholdHero
nameWithType : LifeGoal.HouseholdHero
fullName : TinyLife.Goals.LifeGoal.HouseholdHero
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal HouseholdHero
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly HouseholdHero As LifeGoal
- uid : TinyLife.Goals.LifeGoal.ComputerAddict
commentId : F:TinyLife.Goals.LifeGoal.ComputerAddict
id : ComputerAddict
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : ComputerAddict
nameWithType : LifeGoal.ComputerAddict
fullName : TinyLife.Goals.LifeGoal.ComputerAddict
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal ComputerAddict
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly ComputerAddict As LifeGoal
- uid : TinyLife.Goals.LifeGoal.FriendOfEveryone
commentId : F:TinyLife.Goals.LifeGoal.FriendOfEveryone
id : FriendOfEveryone
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : FriendOfEveryone
nameWithType : LifeGoal.FriendOfEveryone
fullName : TinyLife.Goals.LifeGoal.FriendOfEveryone
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal FriendOfEveryone
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly FriendOfEveryone As LifeGoal
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Goals.LifeGoal.Millionaire
commentId : F:TinyLife.Goals.LifeGoal.Millionaire
id : Millionaire
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Millionaire
nameWithType : LifeGoal.Millionaire
fullName : TinyLife.Goals.LifeGoal.Millionaire
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal Millionaire
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly Millionaire As LifeGoal
2023-01-16 12:24:01 +01:00
- uid : TinyLife.Goals.LifeGoal.PerfectPainter
commentId : F:TinyLife.Goals.LifeGoal.PerfectPainter
id : PerfectPainter
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : PerfectPainter
nameWithType : LifeGoal.PerfectPainter
fullName : TinyLife.Goals.LifeGoal.PerfectPainter
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal PerfectPainter
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly PerfectPainter As LifeGoal
2023-07-20 14:27:20 +02:00
- uid : TinyLife.Goals.LifeGoal.CreativeChild
commentId : F:TinyLife.Goals.LifeGoal.CreativeChild
id : CreativeChild
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : CreativeChild
nameWithType : LifeGoal.CreativeChild
fullName : TinyLife.Goals.LifeGoal.CreativeChild
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal CreativeChild
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly CreativeChild As LifeGoal
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Goals.LifeGoal.CapableCarpenter
commentId : F:TinyLife.Goals.LifeGoal.CapableCarpenter
id : CapableCarpenter
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : CapableCarpenter
nameWithType : LifeGoal.CapableCarpenter
fullName : TinyLife.Goals.LifeGoal.CapableCarpenter
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal CapableCarpenter
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly CapableCarpenter As LifeGoal
2023-01-16 12:24:01 +01:00
- uid : TinyLife.Goals.LifeGoal.GymRat
commentId : F:TinyLife.Goals.LifeGoal.GymRat
id : GymRat
2022-12-20 13:25:03 +01:00
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
2023-01-16 12:24:01 +01:00
name : GymRat
nameWithType : LifeGoal.GymRat
fullName : TinyLife.Goals.LifeGoal.GymRat
2022-12-20 13:25:03 +01:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
2023-01-16 12:24:01 +01:00
content : public static readonly LifeGoal GymRat
2022-12-20 13:25:03 +01:00
return :
type : TinyLife.Goals.LifeGoal
2023-01-16 12:24:01 +01:00
content.vb : Public Shared ReadOnly GymRat As LifeGoal
2023-12-06 13:25:52 +01:00
- uid : TinyLife.Goals.LifeGoal.Writer
commentId : F:TinyLife.Goals.LifeGoal.Writer
id : Writer
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Writer
nameWithType : LifeGoal.Writer
fullName : TinyLife.Goals.LifeGoal.Writer
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly LifeGoal Writer
return :
type : TinyLife.Goals.LifeGoal
content.vb : Public Shared ReadOnly Writer As LifeGoal
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.OnAdvanced
commentId : E:TinyLife.Goals.LifeGoal.OnAdvanced
id : OnAdvanced
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : OnAdvanced
nameWithType : LifeGoal.OnAdvanced
fullName : TinyLife.Goals.LifeGoal.OnAdvanced
type : Event
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : An event that is invoked when a life goal <xref href="TinyLife.Goals.LifeGoal.Instance" data-throw-if-not-resolved="false"></xref> is advanced in <xref href="TinyLife.Goals.LifeGoal.Instance.Advance" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public static event Action<LifeGoal.Instance> OnAdvanced
return :
type : System.Action{TinyLife.Goals.LifeGoal.Instance}
content.vb : Public Shared Event OnAdvanced As Action(Of LifeGoal.Instance)
- uid : TinyLife.Goals.LifeGoal.OnCompleted
commentId : E:TinyLife.Goals.LifeGoal.OnCompleted
id : OnCompleted
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : OnCompleted
nameWithType : LifeGoal.OnCompleted
fullName : TinyLife.Goals.LifeGoal.OnCompleted
type : Event
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : An event that is invoked when a life goal <xref href="TinyLife.Goals.LifeGoal.Instance" data-throw-if-not-resolved="false"></xref> is completed in <xref href="TinyLife.Goals.LifeGoal.Instance.Advance" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public static event Action<LifeGoal.Instance> OnCompleted
return :
type : System.Action{TinyLife.Goals.LifeGoal.Instance}
content.vb : Public Shared Event OnCompleted As Action(Of LifeGoal.Instance)
- uid : TinyLife.Goals.LifeGoal.Name
commentId : F:TinyLife.Goals.LifeGoal.Name
id : Name
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Name
nameWithType : LifeGoal.Name
fullName : TinyLife.Goals.LifeGoal.Name
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The name of this life goal, which is used to register it to the <xref href="TinyLife.Goals.LifeGoal.Goals" data-throw-if-not-resolved="false"></xref> registry
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public readonly string Name
return :
type : System.String
content.vb : Public ReadOnly Name As String
- uid : TinyLife.Goals.LifeGoal.Stages
commentId : F:TinyLife.Goals.LifeGoal.Stages
id : Stages
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Stages
nameWithType : LifeGoal.Stages
fullName : TinyLife.Goals.LifeGoal.Stages
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The stages of this life goal
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public readonly GoalSetInfo[] Stages
return :
type : TinyLife.Goals.GoalSetInfo[]
content.vb : Public ReadOnly Stages As GoalSetInfo()
- uid : TinyLife.Goals.LifeGoal.RewardPersonality
commentId : F:TinyLife.Goals.LifeGoal.RewardPersonality
id : RewardPersonality
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : RewardPersonality
nameWithType : LifeGoal.RewardPersonality
fullName : TinyLife.Goals.LifeGoal.RewardPersonality
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The reward personality that is unlocked when this life goal is completed.
The personality's <xref href="TinyLife.PersonalityType.TypeCategory" data-throw-if-not-resolved="false"></xref> should be <xref href="TinyLife.PersonalityType.TypeCategory.Hidden" data-throw-if-not-resolved="false"></xref> so that this is the only way to unlock the personality.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public readonly PersonalityType RewardPersonality
return :
type : TinyLife.PersonalityType
content.vb : Public ReadOnly RewardPersonality As PersonalityType
- uid : TinyLife.Goals.LifeGoal.AllowedAges
commentId : P:TinyLife.Goals.LifeGoal.AllowedAges
id : AllowedAges
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : AllowedAges
nameWithType : LifeGoal.AllowedAges
fullName : TinyLife.Goals.LifeGoal.AllowedAges
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A set of allowed age group flags for people that can start this life goal.
2024-08-31 11:17:42 +02:00
This value defaults to <xref href="TinyLife.Objects.AgeGroup.ChildOrOlder" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public AgeGroup AllowedAges { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : TinyLife.Objects.AgeGroup
content.vb : Public Property AllowedAges As AgeGroup
overload : TinyLife.Goals.LifeGoal.AllowedAges*
- uid : TinyLife.Goals.LifeGoal.#ctor(System.String,TinyLife.PersonalityType,TinyLife.Goals.GoalSetInfo[])
commentId : M:TinyLife.Goals.LifeGoal.#ctor(System.String,TinyLife.PersonalityType,TinyLife.Goals.GoalSetInfo[])
id : '#ctor(System.String,TinyLife.PersonalityType,TinyLife.Goals.GoalSetInfo[])'
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : LifeGoal(string, PersonalityType, params GoalSetInfo[])
nameWithType : LifeGoal.LifeGoal(string, PersonalityType, params GoalSetInfo[])
fullName : TinyLife.Goals.LifeGoal.LifeGoal(string, TinyLife.PersonalityType, params TinyLife.Goals.GoalSetInfo[])
2021-10-14 20:30:40 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new life goal with the given settings
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public LifeGoal(string name, PersonalityType rewardPersonality, params GoalSetInfo[] stages)
parameters :
- id : name
type : System.String
2024-01-07 16:53:47 +01:00
description : The life goal's name
2021-10-14 20:30:40 +02:00
- id : rewardPersonality
type : TinyLife.PersonalityType
description : The reward personality that is unlocked when the life goal is completed
- id : stages
type : TinyLife.Goals.GoalSetInfo[]
description : A set of goal set informations that represent the stages of this life goal
content.vb : Public Sub New(name As String, rewardPersonality As PersonalityType, ParamArray stages As GoalSetInfo())
overload : TinyLife.Goals.LifeGoal.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : LifeGoal.New(String, PersonalityType, ParamArray GoalSetInfo())
fullName.vb : TinyLife.Goals.LifeGoal.New(String, TinyLife.PersonalityType, ParamArray TinyLife.Goals.GoalSetInfo())
name.vb : New(String, PersonalityType, ParamArray GoalSetInfo())
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.IsCompleted(TinyLife.Objects.Person)
commentId : M:TinyLife.Goals.LifeGoal.IsCompleted(TinyLife.Objects.Person)
id : IsCompleted(TinyLife.Objects.Person)
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : IsCompleted(Person)
nameWithType : LifeGoal.IsCompleted(Person)
fullName : TinyLife.Goals.LifeGoal.IsCompleted(TinyLife.Objects.Person)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Queries whether the given <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> has the <xref href="TinyLife.Goals.LifeGoal.RewardPersonality" data-throw-if-not-resolved="false"></xref>, which indicates that they have completed this life goal
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public bool IsCompleted(Person person)
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person
return :
type : System.Boolean
description : Whether the person has completed this life goal
content.vb : Public Function IsCompleted(person As Person) As Boolean
overload : TinyLife.Goals.LifeGoal.IsCompleted*
- uid : TinyLife.Goals.LifeGoal.Register(TinyLife.Goals.LifeGoal)
commentId : M:TinyLife.Goals.LifeGoal.Register(TinyLife.Goals.LifeGoal)
id : Register(TinyLife.Goals.LifeGoal)
parent : TinyLife.Goals.LifeGoal
langs :
- csharp
- vb
name : Register(LifeGoal)
nameWithType : LifeGoal.Register(LifeGoal)
fullName : TinyLife.Goals.LifeGoal.Register(TinyLife.Goals.LifeGoal)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Registers the given life goal to the <xref href="TinyLife.Goals.LifeGoal.Goals" data-throw-if-not-resolved="false"></xref> registry and returns it
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public static LifeGoal Register(LifeGoal goal)
parameters :
- id : goal
type : TinyLife.Goals.LifeGoal
description : The life goal to register
return :
type : TinyLife.Goals.LifeGoal
description : The passed life goal, for chaining
content.vb : Public Shared Function Register(goal As LifeGoal) As LifeGoal
overload : TinyLife.Goals.LifeGoal.Register*
references :
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- uid : TinyLife.PersonalityType
commentId : T:TinyLife.PersonalityType
parent : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.html
2021-10-14 20:30:40 +02:00
name : PersonalityType
nameWithType : PersonalityType
fullName : TinyLife.PersonalityType
- uid : TinyLife.Goals.LifeGoal.Instance
commentId : T:TinyLife.Goals.LifeGoal.Instance
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
name : LifeGoal.Instance
nameWithType : LifeGoal.Instance
fullName : TinyLife.Goals.LifeGoal.Instance
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
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.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.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.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2021-10-14 20:30:40 +02:00
- 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-10-14 20:30:40 +02:00
- 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-10-14 20:30:40 +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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.LifeGoal.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<LifeGoal>(LifeGoal)
nameWithType : Extensions.JsonCopy<LifeGoal>(LifeGoal)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.LifeGoal>(TinyLife.Goals.LifeGoal)
nameWithType.vb : Extensions.JsonCopy(Of LifeGoal)(LifeGoal)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.LifeGoal)(TinyLife.Goals.LifeGoal)
name.vb : JsonCopy(Of LifeGoal)(LifeGoal)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.LifeGoal)
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.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.LifeGoal)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
- name : )
- uid : TinyLife
commentId : N : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife
nameWithType : TinyLife
fullName : TinyLife
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-10-14 20:30:40 +02:00
name : System
nameWithType : System
fullName : System
- 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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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-10-14 20:30:40 +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
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.LifeGoal}
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.LifeGoal}
parent : System.Collections.ObjectModel
definition : System.Collections.ObjectModel.ReadOnlyDictionary`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name : ReadOnlyDictionary<string, LifeGoal>
nameWithType : ReadOnlyDictionary<string, LifeGoal>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.Goals.LifeGoal>
2022-05-24 13:36:05 +02:00
nameWithType.vb : ReadOnlyDictionary(Of String, LifeGoal)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Goals.LifeGoal)
2022-05-24 13:36:05 +02:00
name.vb : ReadOnlyDictionary(Of String, LifeGoal)
2021-10-14 20:30:40 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-10-14 20:30:40 +02:00
- name : <
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +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
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary`2
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2022-05-24 13:36:05 +02:00
name : ReadOnlyDictionary<TKey, TValue>
nameWithType : ReadOnlyDictionary<TKey, TValue>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>
nameWithType.vb : ReadOnlyDictionary(Of TKey, TValue)
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb : ReadOnlyDictionary(Of TKey, TValue)
2021-10-14 20:30:40 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-10-14 20:30:40 +02:00
- name : <
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : TValue
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : TValue
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel
commentId : N : System.Collections.ObjectModel
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name : System.Collections.ObjectModel
nameWithType : System.Collections.ObjectModel
fullName : System.Collections.ObjectModel
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.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
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.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal
commentId : T:TinyLife.Goals.LifeGoal
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
name : LifeGoal
nameWithType : LifeGoal
fullName : TinyLife.Goals.LifeGoal
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
commentId : M:TinyLife.Goals.LifeGoal.Instance.Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
name : Advance()
nameWithType : LifeGoal.Instance.Advance()
fullName : TinyLife.Goals.LifeGoal.Instance.Advance()
spec.csharp :
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
name : Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
name : Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : System.Action{TinyLife.Goals.LifeGoal.Instance}
commentId : T:System.Action{TinyLife.Goals.LifeGoal.Instance}
parent : System
definition : System.Action`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-10-14 20:30:40 +02:00
name : Action<LifeGoal.Instance>
nameWithType : Action<LifeGoal.Instance>
fullName : System.Action<TinyLife.Goals.LifeGoal.Instance>
nameWithType.vb : Action(Of LifeGoal.Instance)
fullName.vb : System.Action(Of TinyLife.Goals.LifeGoal.Instance)
name.vb : Action(Of LifeGoal.Instance)
spec.csharp :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-10-14 20:30:40 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : .
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance
2023-03-30 18:07:55 +02:00
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2021-10-14 20:30:40 +02:00
- name : '>'
spec.vb :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Goals.LifeGoal
name : LifeGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2023-03-30 18:07:55 +02:00
- name : .
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance
2023-03-30 18:07:55 +02:00
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Action`1
commentId : T:System.Action`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-10-14 20:30:40 +02:00
name : Action<T>
nameWithType : Action<T>
fullName : System.Action<T>
nameWithType.vb : Action(Of T)
fullName.vb : System.Action(Of T)
name.vb : Action(Of T)
spec.csharp :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-10-14 20:30:40 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T
- name : )
- uid : TinyLife.Goals.LifeGoal.Goals
commentId : F:TinyLife.Goals.LifeGoal.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_Goals
2023-03-30 18:07:55 +02:00
name : Goals
nameWithType : LifeGoal.Goals
fullName : TinyLife.Goals.LifeGoal.Goals
2021-10-14 20:30:40 +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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSetInfo[]
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2021-10-14 20:30:40 +02:00
name : GoalSetInfo[]
nameWithType : GoalSetInfo[]
fullName : TinyLife.Goals.GoalSetInfo[]
nameWithType.vb : GoalSetInfo()
fullName.vb : TinyLife.Goals.GoalSetInfo()
name.vb : GoalSetInfo()
spec.csharp :
- uid : TinyLife.Goals.GoalSetInfo
name : GoalSetInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2023-03-30 18:07:55 +02:00
- name : '['
- name : ']'
2021-10-14 20:30:40 +02:00
spec.vb :
- uid : TinyLife.Goals.GoalSetInfo
name : GoalSetInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.PersonalityType.TypeCategory
commentId : T:TinyLife.PersonalityType.TypeCategory
parent : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.html
2021-10-14 20:30:40 +02:00
name : PersonalityType.TypeCategory
nameWithType : PersonalityType.TypeCategory
fullName : TinyLife.PersonalityType.TypeCategory
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.PersonalityType
name : PersonalityType
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.PersonalityType.TypeCategory
name : TypeCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.TypeCategory.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife.PersonalityType
name : PersonalityType
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.PersonalityType.TypeCategory
name : TypeCategory
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.TypeCategory.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.PersonalityType.TypeCategory.Hidden
commentId : F:TinyLife.PersonalityType.TypeCategory.Hidden
2024-01-07 16:53:47 +01:00
href : TinyLife.PersonalityType.TypeCategory.html#TinyLife_PersonalityType_TypeCategory_Hidden
2023-03-30 18:07:55 +02:00
name : Hidden
nameWithType : PersonalityType.TypeCategory.Hidden
fullName : TinyLife.PersonalityType.TypeCategory.Hidden
2024-08-31 11:17:42 +02:00
- uid : TinyLife.Objects.AgeGroup.ChildOrOlder
commentId : F:TinyLife.Objects.AgeGroup.ChildOrOlder
href : TinyLife.Objects.AgeGroup.html#TinyLife_Objects_AgeGroup_ChildOrOlder
name : ChildOrOlder
nameWithType : AgeGroup.ChildOrOlder
fullName : TinyLife.Objects.AgeGroup.ChildOrOlder
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.AllowedAges*
commentId : Overload:TinyLife.Goals.LifeGoal.AllowedAges
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_AllowedAges
2021-10-14 20:30:40 +02:00
name : AllowedAges
nameWithType : LifeGoal.AllowedAges
fullName : TinyLife.Goals.LifeGoal.AllowedAges
- uid : TinyLife.Objects.AgeGroup
commentId : T:TinyLife.Objects.AgeGroup
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.AgeGroup.html
2021-10-14 20:30:40 +02:00
name : AgeGroup
nameWithType : AgeGroup
fullName : TinyLife.Objects.AgeGroup
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.#ctor*
commentId : Overload:TinyLife.Goals.LifeGoal.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal__ctor_System_String_TinyLife_PersonalityType_TinyLife_Goals_GoalSetInfo___
2021-10-14 20:30:40 +02:00
name : LifeGoal
nameWithType : LifeGoal.LifeGoal
fullName : TinyLife.Goals.LifeGoal.LifeGoal
2023-03-30 18:07:55 +02:00
nameWithType.vb : LifeGoal.New
fullName.vb : TinyLife.Goals.LifeGoal.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Person.html
2021-10-14 20:30:40 +02:00
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- uid : TinyLife.Goals.LifeGoal.RewardPersonality
commentId : F:TinyLife.Goals.LifeGoal.RewardPersonality
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_RewardPersonality
2023-03-30 18:07:55 +02:00
name : RewardPersonality
nameWithType : LifeGoal.RewardPersonality
fullName : TinyLife.Goals.LifeGoal.RewardPersonality
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.IsCompleted*
commentId : Overload:TinyLife.Goals.LifeGoal.IsCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_IsCompleted_TinyLife_Objects_Person_
2021-10-14 20:30:40 +02:00
name : IsCompleted
nameWithType : LifeGoal.IsCompleted
fullName : TinyLife.Goals.LifeGoal.IsCompleted
- 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-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Register*
commentId : Overload:TinyLife.Goals.LifeGoal.Register
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_Register_TinyLife_Goals_LifeGoal_
2021-10-14 20:30:40 +02:00
name : Register
nameWithType : LifeGoal.Register
fullName : TinyLife.Goals.LifeGoal.Register