### YamlMime:ManagedReference items: - uid: TinyLife.Goals.Goal commentId: T:TinyLife.Goals.Goal id: Goal parent: TinyLife.Goals children: - TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) - TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean) - TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean) - TinyLife.Goals.Goal.GetProgress - TinyLife.Goals.Goal.Info - TinyLife.Goals.Goal.Name - TinyLife.Goals.Goal.Reset - TinyLife.Goals.Goal.Set - TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) langs: - csharp - vb name: Goal nameWithType: Goal fullName: TinyLife.Goals.Goal type: Class source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goal path: ../TinyLife/Goals/Goal.cs startLine: 13 assemblies: - Tiny Life namespace: TinyLife.Goals summary: >- A goal is a component of a which can be completed. A goal has an underlying that it is constructed from. example: [] syntax: content: >- [DataContract] public abstract class Goal : JsonTypeSafeGenericDataHolder, IGenericDataHolder content.vb: >- Public MustInherit Class Goal Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder inheritance: - System.Object - MLEM.Data.Json.JsonTypeSafeGenericDataHolder derivedClasses: - TinyLife.Goals.Goal`1 - TinyLife.Goals.ManualProgressGoal implements: - MLEM.Misc.IGenericDataHolder inheritedMembers: - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - TinyLife.Goals.Goal.TinyLife.Utilities.Extensions.JsonCopy``1 attributes: - type: System.Runtime.Serialization.DataContractAttribute ctor: System.Runtime.Serialization.DataContractAttribute.#ctor arguments: [] - uid: TinyLife.Goals.Goal.Name commentId: F:TinyLife.Goals.Goal.Name id: Name parent: TinyLife.Goals.Goal langs: - csharp - vb name: Name nameWithType: Goal.Name fullName: TinyLife.Goals.Goal.Name type: Field source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/Goal.cs startLine: 20 assemblies: - Tiny Life namespace: TinyLife.Goals summary: The name of this goal, based on the underlying example: [] syntax: content: >- [DataMember] public readonly string Name return: type: System.String content.vb: >- Public ReadOnly Name As String attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - uid: TinyLife.Goals.Goal.Set commentId: P:TinyLife.Goals.Goal.Set id: Set parent: TinyLife.Goals.Goal langs: - csharp - vb name: Set nameWithType: Goal.Set fullName: TinyLife.Goals.Goal.Set type: Property source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Set path: ../TinyLife/Goals/Goal.cs startLine: 24 assemblies: - Tiny Life namespace: TinyLife.Goals summary: The goal set that this goal is a part of example: [] syntax: content: public GoalSet Set { get; } parameters: [] return: type: TinyLife.Goals.GoalSet content.vb: Public Property [Set] As GoalSet overload: TinyLife.Goals.Goal.Set* - uid: TinyLife.Goals.Goal.Info commentId: P:TinyLife.Goals.Goal.Info id: Info parent: TinyLife.Goals.Goal langs: - csharp - vb name: Info nameWithType: Goal.Info fullName: TinyLife.Goals.Goal.Info type: Property source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Goals/Goal.cs startLine: 28 assemblies: - Tiny Life namespace: TinyLife.Goals summary: The underlying goal info that this goal has been constructed from example: [] syntax: content: public GoalInfo Info { get; } parameters: [] return: type: TinyLife.Goals.GoalInfo content.vb: Public Property Info As GoalInfo overload: TinyLife.Goals.Goal.Info* - uid: TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) commentId: M:TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) id: '#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)' parent: TinyLife.Goals.Goal langs: - csharp - vb name: Goal(GoalSet, GoalInfo) nameWithType: Goal.Goal(GoalSet, GoalInfo) fullName: TinyLife.Goals.Goal.Goal(TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo) type: Constructor source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Goal.cs startLine: 35 assemblies: - Tiny Life namespace: TinyLife.Goals summary: Creates a new goal with the given settings example: [] syntax: content: protected Goal(GoalSet set, GoalInfo info) parameters: - id: set type: TinyLife.Goals.GoalSet description: The goal set that this goal is a part of - id: info type: TinyLife.Goals.GoalInfo description: The underlying goal info that this goal has been constructed from content.vb: Protected Sub New([set] As GoalSet, info As GoalInfo) overload: TinyLife.Goals.Goal.#ctor* nameWithType.vb: Goal.New(GoalSet, GoalInfo) fullName.vb: TinyLife.Goals.Goal.New(TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo) name.vb: New(GoalSet, GoalInfo) - uid: TinyLife.Goals.Goal.GetProgress commentId: M:TinyLife.Goals.Goal.GetProgress id: GetProgress parent: TinyLife.Goals.Goal langs: - csharp - vb name: GetProgress() nameWithType: Goal.GetProgress() fullName: TinyLife.Goals.Goal.GetProgress() type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/Goal.cs startLine: 45 assemblies: - Tiny Life namespace: TinyLife.Goals summary: Returns the progress percentage (between 0 and 1) that this goal has example: [] syntax: content: public abstract float GetProgress() return: type: System.Single description: The progress percentage content.vb: Public MustOverride Function GetProgress() As Single overload: TinyLife.Goals.Goal.GetProgress* - uid: TinyLife.Goals.Goal.Reset commentId: M:TinyLife.Goals.Goal.Reset id: Reset parent: TinyLife.Goals.Goal langs: - csharp - vb name: Reset() nameWithType: Goal.Reset() fullName: TinyLife.Goals.Goal.Reset() type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/Goal.cs startLine: 50 assemblies: - Tiny Life namespace: TinyLife.Goals summary: Resets this goal to the default values, which should cause 0 to be returned on example: [] syntax: content: public abstract void Reset() content.vb: Public MustOverride Sub Reset() overload: TinyLife.Goals.Goal.Reset* - uid: TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean) commentId: M:TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean) id: GetDisplayedProgress(System.Boolean) parent: TinyLife.Goals.Goal langs: - csharp - vb name: GetDisplayedProgress(bool) nameWithType: Goal.GetDisplayedProgress(bool) fullName: TinyLife.Goals.Goal.GetDisplayedProgress(bool) type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/Goal.cs startLine: 57 assemblies: - Tiny Life namespace: TinyLife.Goals summary: >- Returns a string that is used in a goal set's displayed ui information that determines the progress of this goal. By default, the percentage is displayed as a percentage between 0 and 100. example: [] syntax: content: public virtual string GetDisplayedProgress(bool reduced) parameters: - id: reduced type: System.Boolean return: type: System.String description: The displayed goal progress content.vb: Public Overridable Function GetDisplayedProgress(reduced As Boolean) As String overload: TinyLife.Goals.Goal.GetDisplayedProgress* nameWithType.vb: Goal.GetDisplayedProgress(Boolean) fullName.vb: TinyLife.Goals.Goal.GetDisplayedProgress(Boolean) name.vb: GetDisplayedProgress(Boolean) - uid: TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) commentId: M:TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) id: Validate(TinyLife.Goals.GoalSet) parent: TinyLife.Goals.Goal langs: - csharp - vb name: Validate(GoalSet) nameWithType: Goal.Validate(GoalSet) fullName: TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Goal.cs startLine: 66 assemblies: - Tiny Life namespace: TinyLife.Goals summary: Validates this goal when loading the underlying from disk example: [] syntax: content: public virtual bool Validate(GoalSet set) parameters: - id: set type: TinyLife.Goals.GoalSet description: The underlying goal set return: type: System.Boolean description: Whether this goal is considered to be valid content.vb: Public Overridable Function Validate([set] As GoalSet) As Boolean overload: TinyLife.Goals.Goal.Validate* - uid: TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean) commentId: M:TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean) id: GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean) parent: TinyLife.Goals.Goal langs: - csharp - vb name: GetDisplay(Anchor, bool, bool) nameWithType: Goal.GetDisplay(Anchor, bool, bool) fullName: TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor, bool, bool) type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplay path: ../TinyLife/Goals/Goal.cs startLine: 81 assemblies: - Tiny Life namespace: TinyLife.Goals summary: Returns a that contains the content to display to the player for this goal. example: [] syntax: content: public Group GetDisplay(Anchor anchor, bool descriptionAsChild = false, bool reduced = false) parameters: - id: anchor type: MLEM.Ui.Anchor description: The anchor to use for the group. - id: descriptionAsChild type: System.Boolean description: Whether to add the description as a child, rather than a tooltip. - id: reduced type: System.Boolean description: Whether certain elements, like the name and description, should be left out, displaying only the progress of the goal. return: type: MLEM.Ui.Elements.Group description: The display group. content.vb: Public Function GetDisplay(anchor As Anchor, descriptionAsChild As Boolean = False, reduced As Boolean = False) As Group overload: TinyLife.Goals.Goal.GetDisplay* nameWithType.vb: Goal.GetDisplay(Anchor, Boolean, Boolean) fullName.vb: TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor, Boolean, Boolean) name.vb: GetDisplay(Anchor, Boolean, Boolean) references: - uid: TinyLife.Goals.GoalSet commentId: T:TinyLife.Goals.GoalSet parent: TinyLife.Goals href: TinyLife.Goals.GoalSet.html name: GoalSet nameWithType: GoalSet fullName: TinyLife.Goals.GoalSet - uid: TinyLife.Goals.GoalInfo commentId: T:TinyLife.Goals.GoalInfo parent: TinyLife.Goals href: TinyLife.Goals.GoalInfo.html name: GoalInfo nameWithType: GoalInfo fullName: TinyLife.Goals.GoalInfo - uid: TinyLife.Goals commentId: N:TinyLife.Goals href: TinyLife.html name: TinyLife.Goals nameWithType: TinyLife.Goals fullName: TinyLife.Goals spec.csharp: - uid: TinyLife name: TinyLife href: TinyLife.html - name: . - uid: TinyLife.Goals name: Goals href: TinyLife.Goals.html spec.vb: - uid: TinyLife name: TinyLife href: TinyLife.html - name: . - uid: TinyLife.Goals name: Goals href: TinyLife.Goals.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder parent: MLEM.Data.Json isExternal: true name: JsonTypeSafeGenericDataHolder nameWithType: JsonTypeSafeGenericDataHolder fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder - uid: MLEM.Misc.IGenericDataHolder commentId: T:MLEM.Misc.IGenericDataHolder parent: MLEM.Misc isExternal: true name: IGenericDataHolder nameWithType: IGenericDataHolder fullName: MLEM.Misc.IGenericDataHolder - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, object) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, object) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, object) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(String, Object) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(String, Object) name.vb: SetData(String, Object) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder definition: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: GetData(string) nameWithType: JsonTypeSafeGenericDataHolder.GetData(string) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(string) nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String) name.vb: GetData(Of T)(String) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true name: GetDataKeys() nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys() fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys() spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys isExternal: true - name: ( - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys isExternal: true - name: ( - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: TinyLife.Goals.Goal.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ name: JsonCopy(Goal) nameWithType: Extensions.JsonCopy(Goal) fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.Goals.Goal) nameWithType.vb: Extensions.JsonCopy(Of Goal)(Goal) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.Goal)(TinyLife.Goals.Goal) name.vb: JsonCopy(Of Goal)(Goal) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Goal) name: JsonCopy href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ - name: < - uid: TinyLife.Goals.Goal name: Goal href: TinyLife.Goals.Goal.html - name: '>' - name: ( - uid: TinyLife.Goals.Goal name: Goal href: TinyLife.Goals.Goal.html - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Goal) name: JsonCopy href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ - name: ( - name: Of - name: " " - uid: TinyLife.Goals.Goal name: Goal href: TinyLife.Goals.Goal.html - name: ) - name: ( - uid: TinyLife.Goals.Goal name: Goal href: TinyLife.Goals.Goal.html - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: MLEM.Data.Json commentId: N:MLEM.Data.Json isExternal: true name: MLEM.Data.Json nameWithType: MLEM.Data.Json fullName: MLEM.Data.Json spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Data name: Data isExternal: true - name: . - uid: MLEM.Data.Json name: Json isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Data name: Data isExternal: true - name: . - uid: MLEM.Data.Json name: Json isExternal: true - uid: MLEM.Misc commentId: N:MLEM.Misc isExternal: true name: MLEM.Misc nameWithType: MLEM.Misc fullName: MLEM.Misc spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Misc name: Misc isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Misc name: Misc isExternal: true - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: < - name: T - name: '>' - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData isExternal: true - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: T - name: ) - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ name: JsonCopy(T) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(T) nameWithType.vb: Extensions.JsonCopy(Of T)(T) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T) name.vb: JsonCopy(Of T)(T) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ - name: < - name: T - name: '>' - name: ( - name: T - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities href: TinyLife.Utilities.Extensions.html name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities href: TinyLife.html name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities spec.csharp: - uid: TinyLife name: TinyLife href: TinyLife.html - name: . - uid: TinyLife.Utilities name: Utilities href: TinyLife.Utilities.html spec.vb: - uid: TinyLife name: TinyLife href: TinyLife.html - name: . - uid: TinyLife.Utilities name: Utilities href: TinyLife.Utilities.html - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: TinyLife.Goals.Goal.Set* commentId: Overload:TinyLife.Goals.Goal.Set href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Set name: Set nameWithType: Goal.Set fullName: TinyLife.Goals.Goal.Set - uid: TinyLife.Goals.Goal.Info* commentId: Overload:TinyLife.Goals.Goal.Info href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Info name: Info nameWithType: Goal.Info fullName: TinyLife.Goals.Goal.Info - uid: TinyLife.Goals.Goal.#ctor* commentId: Overload:TinyLife.Goals.Goal.#ctor href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal__ctor_TinyLife_Goals_GoalSet_TinyLife_Goals_GoalInfo_ name: Goal nameWithType: Goal.Goal fullName: TinyLife.Goals.Goal.Goal nameWithType.vb: Goal.New fullName.vb: TinyLife.Goals.Goal.New name.vb: New - uid: TinyLife.Goals.Goal.GetProgress* commentId: Overload:TinyLife.Goals.Goal.GetProgress href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress name: GetProgress nameWithType: Goal.GetProgress fullName: TinyLife.Goals.Goal.GetProgress - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: TinyLife.Goals.Goal.GetProgress commentId: M:TinyLife.Goals.Goal.GetProgress parent: TinyLife.Goals.Goal href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress name: GetProgress() nameWithType: Goal.GetProgress() fullName: TinyLife.Goals.Goal.GetProgress() spec.csharp: - uid: TinyLife.Goals.Goal.GetProgress name: GetProgress href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress - name: ( - name: ) spec.vb: - uid: TinyLife.Goals.Goal.GetProgress name: GetProgress href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress - name: ( - name: ) - uid: TinyLife.Goals.Goal.Reset* commentId: Overload:TinyLife.Goals.Goal.Reset href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset name: Reset nameWithType: Goal.Reset fullName: TinyLife.Goals.Goal.Reset - uid: TinyLife.Goals.Goal commentId: T:TinyLife.Goals.Goal parent: TinyLife.Goals href: TinyLife.Goals.Goal.html name: Goal nameWithType: Goal fullName: TinyLife.Goals.Goal - uid: TinyLife.Goals.Goal.GetDisplayedProgress* commentId: Overload:TinyLife.Goals.Goal.GetDisplayedProgress href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplayedProgress_System_Boolean_ name: GetDisplayedProgress nameWithType: Goal.GetDisplayedProgress fullName: TinyLife.Goals.Goal.GetDisplayedProgress - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: TinyLife.Goals.Goal.Validate* commentId: Overload:TinyLife.Goals.Goal.Validate href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Validate_TinyLife_Goals_GoalSet_ name: Validate nameWithType: Goal.Validate fullName: TinyLife.Goals.Goal.Validate - uid: MLEM.Ui.Elements.Group commentId: T:MLEM.Ui.Elements.Group parent: MLEM.Ui.Elements isExternal: true name: Group nameWithType: Group fullName: MLEM.Ui.Elements.Group - uid: TinyLife.Goals.Goal.GetDisplay* commentId: Overload:TinyLife.Goals.Goal.GetDisplay href: TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplay_MLEM_Ui_Anchor_System_Boolean_System_Boolean_ name: GetDisplay nameWithType: Goal.GetDisplay fullName: TinyLife.Goals.Goal.GetDisplay - uid: MLEM.Ui.Anchor commentId: T:MLEM.Ui.Anchor parent: MLEM.Ui isExternal: true name: Anchor nameWithType: Anchor fullName: MLEM.Ui.Anchor - uid: MLEM.Ui.Elements commentId: N:MLEM.Ui.Elements isExternal: true name: MLEM.Ui.Elements nameWithType: MLEM.Ui.Elements fullName: MLEM.Ui.Elements spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Ui name: Ui isExternal: true - name: . - uid: MLEM.Ui.Elements name: Elements isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Ui name: Ui isExternal: true - name: . - uid: MLEM.Ui.Elements name: Elements isExternal: true - uid: MLEM.Ui commentId: N:MLEM.Ui isExternal: true name: MLEM.Ui nameWithType: MLEM.Ui fullName: MLEM.Ui spec.csharp: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Ui name: Ui isExternal: true spec.vb: - uid: MLEM name: MLEM isExternal: true - name: . - uid: MLEM.Ui name: Ui isExternal: true