### YamlMime:ManagedReference items: - uid: TinyLife.Goals.Achievement commentId: T:TinyLife.Goals.Achievement id: Achievement parent: TinyLife.Goals children: - TinyLife.Goals.Achievement.#ctor(TinyLife.Goals.AchievementType,TinyLife.Goals.GoalSet) - TinyLife.Goals.Achievement.Complete - TinyLife.Goals.Achievement.Completed - TinyLife.Goals.Achievement.CreateElement - TinyLife.Goals.Achievement.Goals - TinyLife.Goals.Achievement.Type - TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Goals.Achievement.Validate langs: - csharp - vb name: Achievement nameWithType: Achievement fullName: TinyLife.Goals.Achievement type: Class source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Achievement path: ../TinyLife/Goals/Achievement.cs startLine: 160 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nA class that contains a and represents an achievement that can be gained by the player, either through a or through .\nThe game's default achievements are also available on Steam and other platforms, and get completed automatically when their in-game counterparts are completed.\n" example: [] syntax: content: >- [DataContract] public class Achievement content.vb: >- Public Class Achievement 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.Achievement.TinyLife.Utilities.Extensions.JsonCopy``1 attributes: - type: System.Runtime.Serialization.DataContractAttribute ctor: System.Runtime.Serialization.DataContractAttribute.#ctor arguments: [] - uid: TinyLife.Goals.Achievement.Type commentId: F:TinyLife.Goals.Achievement.Type id: Type parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Type nameWithType: Achievement.Type fullName: TinyLife.Goals.Achievement.Type type: Field source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Type path: ../TinyLife/Goals/Achievement.cs startLine: 167 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nThis achievement instance's underlying .\n" example: [] syntax: content: >- [DataMember] public readonly AchievementType Type return: type: TinyLife.Goals.AchievementType content.vb: >- Public ReadOnly Type As AchievementType attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - uid: TinyLife.Goals.Achievement.Goals commentId: P:TinyLife.Goals.Achievement.Goals id: Goals parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Goals nameWithType: Achievement.Goals fullName: TinyLife.Goals.Achievement.Goals type: Property source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goals path: ../TinyLife/Goals/Achievement.cs startLine: 171 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nThe that this achievement is trying to complete, or null if the underlying does not contain a set of or this achievement is .\n" example: [] syntax: content: >- [DataMember(EmitDefaultValue = false)] public GoalSet Goals { get; protected set; } parameters: [] return: type: TinyLife.Goals.GoalSet content.vb: >- Public Property Goals As GoalSet overload: TinyLife.Goals.Achievement.Goals* attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] namedArguments: - name: EmitDefaultValue type: System.Boolean value: false - uid: TinyLife.Goals.Achievement.Completed commentId: P:TinyLife.Goals.Achievement.Completed id: Completed parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Completed nameWithType: Achievement.Completed fullName: TinyLife.Goals.Achievement.Completed type: Property source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Completed path: ../TinyLife/Goals/Achievement.cs startLine: 177 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nStores whether this achievement has already been completed in the current save file.\nBy default, when this is set to true, is also set to null.\n" example: [] syntax: content: >- [DataMember(EmitDefaultValue = false)] public bool Completed { get; protected set; } parameters: [] return: type: System.Boolean content.vb: >- Public Property Completed As Boolean overload: TinyLife.Goals.Achievement.Completed* attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] namedArguments: - name: EmitDefaultValue type: System.Boolean value: false - uid: TinyLife.Goals.Achievement.#ctor(TinyLife.Goals.AchievementType,TinyLife.Goals.GoalSet) commentId: M:TinyLife.Goals.Achievement.#ctor(TinyLife.Goals.AchievementType,TinyLife.Goals.GoalSet) id: '#ctor(TinyLife.Goals.AchievementType,TinyLife.Goals.GoalSet)' parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Achievement(AchievementType, GoalSet) nameWithType: Achievement.Achievement(AchievementType, GoalSet) fullName: TinyLife.Goals.Achievement.Achievement(TinyLife.Goals.AchievementType, TinyLife.Goals.GoalSet) type: Constructor source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Achievement.cs startLine: 186 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new achievement with the given settings.\nThis constructor is called by .\n" example: [] syntax: content: public Achievement(AchievementType type, GoalSet goals = null) parameters: - id: type type: TinyLife.Goals.AchievementType description: This achievement instance's underlying . - id: goals type: TinyLife.Goals.GoalSet description: The that this achievement is trying to complete. content.vb: Public Sub New(type As AchievementType, goals As GoalSet = Nothing) overload: TinyLife.Goals.Achievement.#ctor* nameWithType.vb: Achievement.New(AchievementType, GoalSet) fullName.vb: TinyLife.Goals.Achievement.New(TinyLife.Goals.AchievementType, TinyLife.Goals.GoalSet) name.vb: New(AchievementType, GoalSet) - uid: TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) commentId: M:TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Update(GameTime, TimeSpan, float) nameWithType: Achievement.Update(GameTime, TimeSpan, float) fullName: TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float) type: Method source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Update path: ../TinyLife/Goals/Achievement.cs startLine: 198 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nUpdates this achievement, querying its and completing it if necessary.\nThis method is called every update frame.\n" example: [] syntax: content: public virtual void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier) parameters: - id: time type: Microsoft.Xna.Framework.GameTime description: The game's time. - id: passedInGame type: System.TimeSpan description: The amount of time that has passed since the last update, in in-game time. - id: speedMultiplier type: System.Single description: The speed multiplier that time is currently passing with. content.vb: Public Overridable Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single) overload: TinyLife.Goals.Achievement.Update* nameWithType.vb: Achievement.Update(GameTime, TimeSpan, Single) fullName.vb: TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single) name.vb: Update(GameTime, TimeSpan, Single) - uid: TinyLife.Goals.Achievement.CreateElement commentId: M:TinyLife.Goals.Achievement.CreateElement id: CreateElement parent: TinyLife.Goals.Achievement langs: - csharp - vb name: CreateElement() nameWithType: Achievement.CreateElement() fullName: TinyLife.Goals.Achievement.CreateElement() type: Method source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CreateElement path: ../TinyLife/Goals/Achievement.cs startLine: 208 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates the that is used to display this achievement.\nCustom implementations can display custom progress or other custom information.\n" example: [] syntax: content: public virtual Element CreateElement() return: type: MLEM.Ui.Elements.Element description: The element used to display this achievement. content.vb: Public Overridable Function CreateElement() As Element overload: TinyLife.Goals.Achievement.CreateElement* - uid: TinyLife.Goals.Achievement.Validate commentId: M:TinyLife.Goals.Achievement.Validate id: Validate parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Validate() nameWithType: Achievement.Validate() fullName: TinyLife.Goals.Achievement.Validate() type: Method source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Achievement.cs startLine: 227 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nValidates this achievement when loading from disk, validating its and returning whether the validation was successful.\n" example: [] syntax: content: public virtual bool Validate() return: type: System.Boolean description: Whether this achievement is valid. content.vb: Public Overridable Function Validate() As Boolean overload: TinyLife.Goals.Achievement.Validate* - uid: TinyLife.Goals.Achievement.Complete commentId: M:TinyLife.Goals.Achievement.Complete id: Complete parent: TinyLife.Goals.Achievement langs: - csharp - vb name: Complete() nameWithType: Achievement.Complete() fullName: TinyLife.Goals.Achievement.Complete() type: Method source: remote: path: TinyLife/Goals/Achievement.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Complete path: ../TinyLife/Goals/Achievement.cs startLine: 235 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCompletes this achievement. If is already true, this method should do nothing.\nNote that this method completes an achievement even if its are not met yet.\n" example: [] syntax: content: public virtual void Complete() content.vb: Public Overridable Sub Complete() overload: TinyLife.Goals.Achievement.Complete* references: - uid: TinyLife.Goals.AchievementType commentId: T:TinyLife.Goals.AchievementType parent: TinyLife.Goals name: AchievementType nameWithType: AchievementType fullName: TinyLife.Goals.AchievementType - uid: TinyLife.Goals.GoalSet commentId: T:TinyLife.Goals.GoalSet parent: TinyLife.Goals name: GoalSet nameWithType: GoalSet fullName: TinyLife.Goals.GoalSet - uid: TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType) commentId: M:TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType) name: CompleteAchievement(AchievementType) nameWithType: GameImpl.CompleteAchievement(AchievementType) fullName: TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType) spec.csharp: - uid: TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType) name: CompleteAchievement - name: ( - uid: TinyLife.Goals.AchievementType name: AchievementType - name: ) spec.vb: - uid: TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType) name: CompleteAchievement - name: ( - uid: TinyLife.Goals.AchievementType name: AchievementType - name: ) - uid: TinyLife.Goals commentId: N:TinyLife.Goals name: TinyLife.Goals nameWithType: TinyLife.Goals fullName: TinyLife.Goals spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Goals name: Goals spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Goals name: Goals - 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: 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.Achievement.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(Achievement) nameWithType: Extensions.JsonCopy(Achievement) fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.Goals.Achievement) nameWithType.vb: Extensions.JsonCopy(Of Achievement)(Achievement) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.Achievement)(TinyLife.Goals.Achievement) name.vb: JsonCopy(Of Achievement)(Achievement) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Achievement) name: JsonCopy - name: < - uid: TinyLife.Goals.Achievement name: Achievement - name: '>' - name: ( - uid: TinyLife.Goals.Achievement name: Achievement - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Achievement) name: JsonCopy - name: ( - name: Of - name: " " - uid: TinyLife.Goals.Achievement name: Achievement - name: ) - name: ( - uid: TinyLife.Goals.Achievement name: Achievement - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M: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 - name: < - name: T - name: '>' - name: ( - name: T - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities - uid: TinyLife.Goals.Achievement.Type commentId: F:TinyLife.Goals.Achievement.Type name: Type nameWithType: Achievement.Type fullName: TinyLife.Goals.Achievement.Type - uid: TinyLife.Goals.AchievementType.Goals commentId: F:TinyLife.Goals.AchievementType.Goals name: Goals nameWithType: AchievementType.Goals fullName: TinyLife.Goals.AchievementType.Goals - uid: TinyLife.Goals.Achievement.Completed commentId: P:TinyLife.Goals.Achievement.Completed name: Completed nameWithType: Achievement.Completed fullName: TinyLife.Goals.Achievement.Completed - uid: TinyLife.Goals.Achievement.Goals* commentId: Overload:TinyLife.Goals.Achievement.Goals name: Goals nameWithType: Achievement.Goals fullName: TinyLife.Goals.Achievement.Goals - uid: TinyLife.Goals.Achievement.Goals commentId: P:TinyLife.Goals.Achievement.Goals name: Goals nameWithType: Achievement.Goals fullName: TinyLife.Goals.Achievement.Goals - uid: TinyLife.Goals.Achievement.Completed* commentId: Overload:TinyLife.Goals.Achievement.Completed name: Completed nameWithType: Achievement.Completed fullName: TinyLife.Goals.Achievement.Completed - 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.AchievementType.Construct commentId: M:TinyLife.Goals.AchievementType.Construct name: Construct() nameWithType: AchievementType.Construct() fullName: TinyLife.Goals.AchievementType.Construct() spec.csharp: - uid: TinyLife.Goals.AchievementType.Construct name: Construct - name: ( - name: ) spec.vb: - uid: TinyLife.Goals.AchievementType.Construct name: Construct - name: ( - name: ) - uid: TinyLife.Goals.Achievement.#ctor* commentId: Overload:TinyLife.Goals.Achievement.#ctor name: Achievement nameWithType: Achievement.Achievement fullName: TinyLife.Goals.Achievement.Achievement nameWithType.vb: Achievement.New fullName.vb: TinyLife.Goals.Achievement.New name.vb: New - uid: TinyLife.Goals.Achievement.Update* commentId: Overload:TinyLife.Goals.Achievement.Update name: Update nameWithType: Achievement.Update fullName: TinyLife.Goals.Achievement.Update - uid: Microsoft.Xna.Framework.GameTime commentId: T:Microsoft.Xna.Framework.GameTime parent: Microsoft.Xna.Framework isExternal: true name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime - uid: System.TimeSpan commentId: T:System.TimeSpan parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan name: TimeSpan nameWithType: TimeSpan fullName: System.TimeSpan - 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: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - uid: MLEM.Ui.Elements.Element commentId: T:MLEM.Ui.Elements.Element parent: MLEM.Ui.Elements isExternal: true name: Element nameWithType: Element fullName: MLEM.Ui.Elements.Element - uid: TinyLife.Goals.Achievement.CreateElement* commentId: Overload:TinyLife.Goals.Achievement.CreateElement name: CreateElement nameWithType: Achievement.CreateElement fullName: TinyLife.Goals.Achievement.CreateElement - 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: TinyLife.Goals.Achievement.Validate* commentId: Overload:TinyLife.Goals.Achievement.Validate name: Validate nameWithType: Achievement.Validate fullName: TinyLife.Goals.Achievement.Validate - uid: TinyLife.Goals.Achievement.Complete* commentId: Overload:TinyLife.Goals.Achievement.Complete name: Complete nameWithType: Achievement.Complete fullName: TinyLife.Goals.Achievement.Complete