2022-07-28 14:58:38 +02:00
### 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
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-07-28 14:58:38 +02:00
- TinyLife.Goals.Achievement.Validate
langs :
- csharp
- vb
name : Achievement
nameWithType : Achievement
fullName : TinyLife.Goals.Achievement
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A class that contains a <xref href="TinyLife.Goals.AchievementType" data-throw-if-not-resolved="false"></xref> and represents an achievement that can be gained by the player, either through a <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> or through <xref href="TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType)" data-throw-if-not-resolved="false"></xref>.
The game's default achievements are also available on Steam and other platforms, and get completed automatically when their in-game counterparts are completed.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
public class Achievement
content.vb : >-
<DataContract>
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : This achievement instance's underlying <xref href="TinyLife.Goals.AchievementType" data-throw-if-not-resolved="false"></xref>.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public readonly AchievementType Type
return :
type : TinyLife.Goals.AchievementType
content.vb : >-
<DataMember>
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> that this achievement is trying to complete, or null if the underlying <xref href="TinyLife.Goals.Achievement.Type" data-throw-if-not-resolved="false"></xref> does not contain a set of <xref href="TinyLife.Goals.AchievementType.Goals" data-throw-if-not-resolved="false"></xref> or this achievement is <xref href="TinyLife.Goals.Achievement.Completed" data-throw-if-not-resolved="false"></xref>.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : >-
[ DataMember(EmitDefaultValue = false)]
public GoalSet Goals { get; protected set; }
parameters : [ ]
return :
type : TinyLife.Goals.GoalSet
content.vb : >-
<DataMember(EmitDefaultValue:=False)>
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Stores whether this achievement has already been completed in the current save file.
By default, when this is set to <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a>, <xref href="TinyLife.Goals.Achievement.Goals" data-throw-if-not-resolved="false"></xref> is also set to null.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : >-
[ DataMember(EmitDefaultValue = false)]
public bool Completed { get; protected set; }
parameters : [ ]
return :
type : System.Boolean
content.vb : >-
<DataMember(EmitDefaultValue:=False)>
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Creates a new achievement with the given settings.
This constructor is called by <xref href="TinyLife.Goals.AchievementType.Construct" data-throw-if-not-resolved="false"></xref>.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : public Achievement(AchievementType type, GoalSet goals = null)
parameters :
- id : type
type : TinyLife.Goals.AchievementType
2024-01-07 16:53:47 +01:00
description : This achievement instance's underlying <xref href="TinyLife.Goals.AchievementType" data-throw-if-not-resolved="false"></xref>.
2022-07-28 14:58:38 +02:00
- id : goals
type : TinyLife.Goals.GoalSet
description : The <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> that this achievement is trying to complete.
content.vb : Public Sub New(type As AchievementType, goals As GoalSet = Nothing)
overload : TinyLife.Goals.Achievement.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : Achievement.New(AchievementType, GoalSet)
fullName.vb : TinyLife.Goals.Achievement.New(TinyLife.Goals.AchievementType, TinyLife.Goals.GoalSet)
name.vb : New(AchievementType, GoalSet)
2022-09-05 14:19:42 +02:00
- 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)
2022-07-28 14:58:38 +02:00
parent : TinyLife.Goals.Achievement
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : Achievement.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Goals.Achievement.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2022-07-28 14:58:38 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Updates this achievement, querying its <xref href="TinyLife.Goals.Achievement.Goals" data-throw-if-not-resolved="false"></xref> and completing it if necessary.
This method is called every update frame.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : public virtual void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters :
- id : time
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.GameTime
2024-01-07 16:53:47 +01:00
description : The game's time.
2022-07-28 14:58:38 +02:00
- 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*
2023-03-30 18:07:55 +02:00
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)
2022-07-28 14:58:38 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Creates the <xref href="MLEM.Ui.Elements.Element" data-throw-if-not-resolved="false"></xref> that is used to display this achievement.
Custom implementations can display custom progress or other custom information.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : public virtual Element CreateElement()
return :
type : MLEM.Ui.Elements.Element
description : The element used to display this achievement.
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Function CreateElement() As Element
2022-07-28 14:58:38 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Validates this achievement when loading from disk, validating its <xref href="TinyLife.Goals.Achievement.Goals" data-throw-if-not-resolved="false"></xref> and returning whether the validation was successful.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : public virtual bool Validate()
return :
type : System.Boolean
description : Whether this achievement is valid.
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Function Validate() As Boolean
2022-07-28 14:58:38 +02:00
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
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Completes this achievement. If <xref href="TinyLife.Goals.Achievement.Completed" data-throw-if-not-resolved="false"></xref> is already true, this method should do nothing.
Note that this method completes an achievement even if its <xref href="TinyLife.Goals.Achievement.Goals" data-throw-if-not-resolved="false"></xref> are not met yet.
2022-07-28 14:58:38 +02:00
example : [ ]
syntax :
content : public virtual void Complete()
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Sub Complete()
2022-07-28 14:58:38 +02:00
overload : TinyLife.Goals.Achievement.Complete*
references :
- uid : TinyLife.Goals.AchievementType
commentId : T:TinyLife.Goals.AchievementType
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html
2022-07-28 14:58:38 +02:00
name : AchievementType
nameWithType : AchievementType
fullName : TinyLife.Goals.AchievementType
- 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
2022-07-28 14:58:38 +02:00
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
2022-10-18 13:03:11 +02:00
- uid : TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType)
commentId : M:TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType)
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_CompleteAchievement_TinyLife_Goals_AchievementType_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_CompleteAchievement_TinyLife_Goals_AchievementType_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Goals.AchievementType
name : AchievementType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
- uid : TinyLife.GameImpl.CompleteAchievement(TinyLife.Goals.AchievementType)
name : CompleteAchievement
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_CompleteAchievement_TinyLife_Goals_AchievementType_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Goals.AchievementType
name : AchievementType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html
2023-03-30 18:07:55 +02:00
- name : )
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +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 : " "
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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()
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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()
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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()
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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)
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-07-28 14:58:38 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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 : " "
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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()
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +02:00
- 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)
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<Achievement>(Achievement)
nameWithType : Extensions.JsonCopy<Achievement>(Achievement)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.Achievement>(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)
2022-07-28 14:58:38 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Achievement)
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.Achievement
name : Achievement
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html
2023-03-30 18:07:55 +02:00
- name : '>'
2022-07-28 14:58:38 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.Achievement
name : Achievement
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html
2022-07-28 14:58:38 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.Achievement)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.Goals.Achievement
name : Achievement
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html
2023-03-30 18:07:55 +02:00
- name : )
2022-07-28 14:58:38 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.Achievement
name : Achievement
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html
2022-07-28 14:58:38 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-07-28 14:58:38 +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_
2022-07-28 14:58:38 +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 : '>'
2022-07-28 14:58:38 +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 : )
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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
2022-07-28 14:58:38 +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-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Type
commentId : F:TinyLife.Goals.Achievement.Type
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Type
2023-03-30 18:07:55 +02:00
name : Type
nameWithType : Achievement.Type
fullName : TinyLife.Goals.Achievement.Type
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.AchievementType.Goals
commentId : F:TinyLife.Goals.AchievementType.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html#TinyLife_Goals_AchievementType_Goals
2023-03-30 18:07:55 +02:00
name : Goals
nameWithType : AchievementType.Goals
fullName : TinyLife.Goals.AchievementType.Goals
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Completed
commentId : P:TinyLife.Goals.Achievement.Completed
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Completed
2023-03-30 18:07:55 +02:00
name : Completed
nameWithType : Achievement.Completed
fullName : TinyLife.Goals.Achievement.Completed
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Goals*
commentId : Overload:TinyLife.Goals.Achievement.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Goals
2022-07-28 14:58:38 +02:00
name : Goals
nameWithType : Achievement.Goals
fullName : TinyLife.Goals.Achievement.Goals
- uid : TinyLife.Goals.Achievement.Goals
commentId : P:TinyLife.Goals.Achievement.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Goals
2023-03-30 18:07:55 +02:00
name : Goals
nameWithType : Achievement.Goals
fullName : TinyLife.Goals.Achievement.Goals
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Completed*
commentId : Overload:TinyLife.Goals.Achievement.Completed
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Completed
2022-07-28 14:58:38 +02:00
name : Completed
nameWithType : Achievement.Completed
fullName : TinyLife.Goals.Achievement.Completed
- 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
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.AchievementType.Construct
commentId : M:TinyLife.Goals.AchievementType.Construct
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html#TinyLife_Goals_AchievementType_Construct
2023-03-30 18:07:55 +02:00
name : Construct()
nameWithType : AchievementType.Construct()
fullName : TinyLife.Goals.AchievementType.Construct()
spec.csharp :
- uid : TinyLife.Goals.AchievementType.Construct
name : Construct
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html#TinyLife_Goals_AchievementType_Construct
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.AchievementType.Construct
name : Construct
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AchievementType.html#TinyLife_Goals_AchievementType_Construct
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.#ctor*
commentId : Overload:TinyLife.Goals.Achievement.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement__ctor_TinyLife_Goals_AchievementType_TinyLife_Goals_GoalSet_
2022-07-28 14:58:38 +02:00
name : Achievement
nameWithType : Achievement.Achievement
fullName : TinyLife.Goals.Achievement.Achievement
2023-03-30 18:07:55 +02:00
nameWithType.vb : Achievement.New
fullName.vb : TinyLife.Goals.Achievement.New
name.vb : New
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Update*
commentId : Overload:TinyLife.Goals.Achievement.Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2022-07-28 14:58:38 +02:00
name : Update
nameWithType : Achievement.Update
fullName : TinyLife.Goals.Achievement.Update
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
commentId : T:Microsoft.Xna.Framework.GameTime
parent : Microsoft.Xna.Framework
2022-07-28 14:58:38 +02:00
isExternal : true
name : GameTime
nameWithType : GameTime
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.GameTime
2022-07-28 14:58:38 +02:00
- uid : System.TimeSpan
commentId : T:System.TimeSpan
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2022-07-28 14:58:38 +02:00
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
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
2022-07-28 14:58:38 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_CreateElement
2022-07-28 14:58:38 +02:00
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
2023-03-30 18:07:55 +02:00
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
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.Achievement.Validate*
commentId : Overload:TinyLife.Goals.Achievement.Validate
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Validate
2022-07-28 14:58:38 +02:00
name : Validate
nameWithType : Achievement.Validate
fullName : TinyLife.Goals.Achievement.Validate
- uid : TinyLife.Goals.Achievement.Complete*
commentId : Overload:TinyLife.Goals.Achievement.Complete
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Achievement.html#TinyLife_Goals_Achievement_Complete
2022-07-28 14:58:38 +02:00
name : Complete
nameWithType : Achievement.Complete
fullName : TinyLife.Goals.Achievement.Complete