2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.ManualProgressGoal
commentId : T:TinyLife.Goals.ManualProgressGoal
id : ManualProgressGoal
parent : TinyLife.Goals
children :
- TinyLife.Goals.ManualProgressGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)
- TinyLife.Goals.ManualProgressGoal.GetProgress
2024-06-09 17:05:30 +02:00
- TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.ManualProgressGoal.Reset
langs :
- csharp
- vb
name : ManualProgressGoal
nameWithType : ManualProgressGoal
fullName : TinyLife.Goals.ManualProgressGoal
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A manual progress goal is a <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> that is not automatically triggered.
2024-06-09 17:05:30 +02:00
Its progress goes between 0 and 1, and can be advanced using <xref href="TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike%2cSystem.Single%2cSystem.Single%2cTinyLife.Actions.ActionInfo%2cTinyLife.Skills.SkillType%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content: 'public class ManualProgressGoal : Goal, IGenericDataHolder'
2023-03-30 18:07:55 +02:00
content.vb : Public Class ManualProgressGoal Inherits Goal Implements IGenericDataHolder
2021-10-14 20:30:40 +02:00
inheritance :
- System.Object
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.Goal
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
- TinyLife.Goals.Goal.Name
- TinyLife.Goals.Goal.Set
- TinyLife.Goals.Goal.Info
2024-03-09 19:49:55 +01:00
- TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
2024-03-09 19:49:55 +01:00
- TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean)
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
- TinyLife.Goals.ManualProgressGoal.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Goals.ManualProgressGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)
commentId : M:TinyLife.Goals.ManualProgressGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)
id : '#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)'
parent : TinyLife.Goals.ManualProgressGoal
langs :
- csharp
- vb
name : ManualProgressGoal(GoalSet, GoalInfo)
nameWithType : ManualProgressGoal.ManualProgressGoal(GoalSet, GoalInfo)
fullName : TinyLife.Goals.ManualProgressGoal.ManualProgressGoal(TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo)
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new goal with the given settings
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public ManualProgressGoal(GoalSet set, GoalInfo info)
parameters :
- id : set
type : TinyLife.Goals.GoalSet
2022-01-08 12:41:09 +01:00
description : The goal set that this goal is a part of
2021-10-14 20:30:40 +02:00
- id : info
type : TinyLife.Goals.GoalInfo
2022-01-08 12:41:09 +01:00
description : The underlying goal info that this goal has been constructed from
2023-03-30 18:07:55 +02:00
content.vb : Public Sub New([set] As GoalSet, info As GoalInfo)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.ManualProgressGoal.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ManualProgressGoal.New(GoalSet, GoalInfo)
fullName.vb : TinyLife.Goals.ManualProgressGoal.New(TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo)
name.vb : New(GoalSet, GoalInfo)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.GetProgress
commentId : M:TinyLife.Goals.ManualProgressGoal.GetProgress
id : GetProgress
parent : TinyLife.Goals.ManualProgressGoal
langs :
- csharp
- vb
name : GetProgress()
nameWithType : ManualProgressGoal.GetProgress()
fullName : TinyLife.Goals.ManualProgressGoal.GetProgress()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns the progress percentage (between 0 and 1) that this goal has
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public override float GetProgress()
return :
type : System.Single
2022-01-08 12:41:09 +01:00
description : The progress percentage
2023-03-30 18:07:55 +02:00
content.vb : Public Overrides Function GetProgress() As Single
2021-10-14 20:30:40 +02:00
overridden : TinyLife.Goals.Goal.GetProgress
overload : TinyLife.Goals.ManualProgressGoal.GetProgress*
- uid : TinyLife.Goals.ManualProgressGoal.Reset
commentId : M:TinyLife.Goals.ManualProgressGoal.Reset
id : Reset
parent : TinyLife.Goals.ManualProgressGoal
langs :
- csharp
- vb
name : Reset()
nameWithType : ManualProgressGoal.Reset()
fullName : TinyLife.Goals.ManualProgressGoal.Reset()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Resets this goal to the default values, which should cause 0 to be returned on <xref href="TinyLife.Goals.Goal.GetProgress" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public override void Reset()
2023-03-30 18:07:55 +02:00
content.vb : Public Overrides Sub Reset()
2021-10-14 20:30:40 +02:00
overridden : TinyLife.Goals.Goal.Reset
overload : TinyLife.Goals.ManualProgressGoal.Reset*
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
commentId : M:TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
id : MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.ManualProgressGoal
langs :
- csharp
- vb
2024-06-09 17:05:30 +02:00
name : MakeProgress(PersonLike, float, float, ActionInfo, SkillType, float)
nameWithType : ManualProgressGoal.MakeProgress(PersonLike, float, float, ActionInfo, SkillType, float)
fullName : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike, float, float, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, float)
2021-10-14 20:30:40 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-06-09 17:05:30 +02:00
summary : Makes progress on this manual progress goal based on the underlying <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Objects.PersonLike.GetEfficiencyModifier(System.Single%2cTinyLife.Actions.ActionInfo%2cTinyLife.Skills.SkillType%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2024-06-09 17:05:30 +02:00
content : public void MakeProgress(PersonLike person, float amount, float speedMultiplier, ActionInfo info = null, SkillType skill = null, float levelModifier = 0.1)
2021-10-14 20:30:40 +02:00
parameters :
2022-07-28 14:58:38 +02:00
- id : person
2024-06-09 17:05:30 +02:00
type : TinyLife.Objects.PersonLike
2022-07-28 14:58:38 +02:00
description : The person that should make progress on this goal.
2021-10-14 20:30:40 +02:00
- id : amount
type : System.Single
description : The amount of progress to make
2021-11-26 23:42:22 +01:00
- id : speedMultiplier
type : System.Single
description : The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
- id : info
type : TinyLife.Actions.ActionInfo
2024-01-07 16:53:47 +01:00
description : The action information that influences this goal's progress
2021-10-14 20:30:40 +02:00
- id : skill
type : TinyLife.Skills.SkillType
2024-01-07 16:53:47 +01:00
description : The skill that influences this goal's progress
2021-10-14 20:30:40 +02:00
- id : levelModifier
type : System.Single
2024-01-07 16:53:47 +01:00
description : The amount by which each skill level influences this goal's progress
2024-06-09 17:05:30 +02:00
content.vb : Public Sub MakeProgress(person As PersonLike, amount As Single, speedMultiplier As Single, info As ActionInfo = Nothing, skill As SkillType = Nothing, levelModifier As Single = 0.1)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.ManualProgressGoal.MakeProgress*
2024-06-09 17:05:30 +02:00
nameWithType.vb : ManualProgressGoal.MakeProgress(PersonLike, Single, Single, ActionInfo, SkillType, Single)
fullName.vb : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike, Single, Single, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, Single)
name.vb : MakeProgress(PersonLike, Single, Single, ActionInfo, SkillType, Single)
2021-10-14 20:30:40 +02:00
references :
- uid : TinyLife.Goals.Goal
commentId : T:TinyLife.Goals.Goal
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html
2021-10-14 20:30:40 +02:00
name : Goal
nameWithType : Goal
fullName : TinyLife.Goals.Goal
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
commentId : M:TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2021-10-14 20:30:40 +02:00
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_MakeProgress_TinyLife_Objects_PersonLike_System_Single_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
name : MakeProgress(PersonLike, float, float, ActionInfo, SkillType, float)
nameWithType : ManualProgressGoal.MakeProgress(PersonLike, float, float, ActionInfo, SkillType, float)
fullName : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike, float, float, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, float)
nameWithType.vb : ManualProgressGoal.MakeProgress(PersonLike, Single, Single, ActionInfo, SkillType, Single)
fullName.vb : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike, Single, Single, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, Single)
name.vb : MakeProgress(PersonLike, Single, Single, ActionInfo, SkillType, Single)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2023-03-30 18:07:55 +02:00
name : MakeProgress
2024-06-09 17:05:30 +02:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_MakeProgress_TinyLife_Objects_PersonLike_System_Single_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.MakeProgress(TinyLife.Objects.PersonLike,System.Single,System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2023-03-30 18:07:55 +02:00
name : MakeProgress
2024-06-09 17:05:30 +02:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_MakeProgress_TinyLife_Objects_PersonLike_System_Single_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2021-10-14 20:30:40 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
2021-10-14 20:30:40 +02:00
isExternal : true
2021-11-23 16:24:04 +01:00
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
- uid : TinyLife.Goals.Goal.Name
commentId : F:TinyLife.Goals.Goal.Name
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Name
2021-10-14 20:30:40 +02:00
name : Name
nameWithType : Goal.Name
fullName : TinyLife.Goals.Goal.Name
- uid : TinyLife.Goals.Goal.Set
commentId : P:TinyLife.Goals.Goal.Set
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Set
2021-10-14 20:30:40 +02:00
name : Set
nameWithType : Goal.Set
fullName : TinyLife.Goals.Goal.Set
- uid : TinyLife.Goals.Goal.Info
commentId : P:TinyLife.Goals.Goal.Info
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Info
2021-10-14 20:30:40 +02:00
name : Info
nameWithType : Goal.Info
fullName : TinyLife.Goals.Goal.Info
2024-03-09 19:49:55 +01:00
- uid : TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean)
commentId : M:TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.Goal
2024-03-09 19:49:55 +01:00
isExternal : true
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplayedProgress_System_Boolean_
name : GetDisplayedProgress(bool)
nameWithType : Goal.GetDisplayedProgress(bool)
fullName : TinyLife.Goals.Goal.GetDisplayedProgress(bool)
nameWithType.vb : Goal.GetDisplayedProgress(Boolean)
fullName.vb : TinyLife.Goals.Goal.GetDisplayedProgress(Boolean)
name.vb : GetDisplayedProgress(Boolean)
2021-10-14 20:30:40 +02:00
spec.csharp :
2024-03-09 19:49:55 +01:00
- uid : TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean)
2021-10-14 20:30:40 +02:00
name : GetDisplayedProgress
2024-03-09 19:49:55 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplayedProgress_System_Boolean_
2021-10-14 20:30:40 +02:00
- name : (
2024-03-09 19:49:55 +01:00
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2024-03-09 19:49:55 +01:00
- uid : TinyLife.Goals.Goal.GetDisplayedProgress(System.Boolean)
2021-10-14 20:30:40 +02:00
name : GetDisplayedProgress
2024-03-09 19:49:55 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplayedProgress_System_Boolean_
2021-10-14 20:30:40 +02:00
- name : (
2024-03-09 19:49:55 +01:00
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-10-14 20:30:40 +02:00
- name : )
- uid : TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
commentId : M:TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Validate_TinyLife_Goals_GoalSet_
2021-10-14 20:30:40 +02:00
name : Validate(GoalSet)
nameWithType : Goal.Validate(GoalSet)
fullName : TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
spec.csharp :
- uid : TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
name : Validate
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Validate_TinyLife_Goals_GoalSet_
2021-10-14 20:30:40 +02:00
- name : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet)
name : Validate
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Validate_TinyLife_Goals_GoalSet_
2021-10-14 20:30:40 +02:00
- name : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
- name : )
2024-03-09 19:49:55 +01:00
- 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)
parent : TinyLife.Goals.Goal
isExternal : true
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplay_MLEM_Ui_Anchor_System_Boolean_System_Boolean_
name : GetDisplay(Anchor, bool, bool)
nameWithType : Goal.GetDisplay(Anchor, bool, bool)
fullName : TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor, bool, bool)
nameWithType.vb : Goal.GetDisplay(Anchor, Boolean, Boolean)
fullName.vb : TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor, Boolean, Boolean)
name.vb : GetDisplay(Anchor, Boolean, Boolean)
spec.csharp :
- uid : TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean)
name : GetDisplay
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplay_MLEM_Ui_Anchor_System_Boolean_System_Boolean_
- name : (
- uid : MLEM.Ui.Anchor
name : Anchor
isExternal : true
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.GetDisplay(MLEM.Ui.Anchor,System.Boolean,System.Boolean)
name : GetDisplay
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetDisplay_MLEM_Ui_Anchor_System_Boolean_System_Boolean_
- name : (
- uid : MLEM.Ui.Anchor
name : Anchor
isExternal : true
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
definition : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
2021-11-23 16:24:04 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2021-10-14 20:30:40 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-10-14 20:30:40 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-10-14 20:30:40 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-10-14 20:30:40 +02:00
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
isExternal : true
name : GetDataKeys()
2021-11-23 16:24:04 +01:00
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
2021-10-14 20:30:40 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.ManualProgressGoal.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<ManualProgressGoal>(ManualProgressGoal)
nameWithType : Extensions.JsonCopy<ManualProgressGoal>(ManualProgressGoal)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.ManualProgressGoal>(TinyLife.Goals.ManualProgressGoal)
nameWithType.vb : Extensions.JsonCopy(Of ManualProgressGoal)(ManualProgressGoal)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.ManualProgressGoal)(TinyLife.Goals.ManualProgressGoal)
name.vb : JsonCopy(Of ManualProgressGoal)(ManualProgressGoal)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.ManualProgressGoal)
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.ManualProgressGoal
name : ManualProgressGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.ManualProgressGoal
name : ManualProgressGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.ManualProgressGoal)
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.ManualProgressGoal
name : ManualProgressGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html
2023-03-30 18:07:55 +02:00
- name : )
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.ManualProgressGoal
name : ManualProgressGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html
2021-10-14 20:30:40 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-10-14 20:30:40 +02:00
name : System
nameWithType : System
fullName : System
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
2021-10-14 20:30:40 +02:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-10-14 20:30:40 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.#ctor*
commentId : Overload:TinyLife.Goals.ManualProgressGoal.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal__ctor_TinyLife_Goals_GoalSet_TinyLife_Goals_GoalInfo_
2021-10-14 20:30:40 +02:00
name : ManualProgressGoal
nameWithType : ManualProgressGoal.ManualProgressGoal
fullName : TinyLife.Goals.ManualProgressGoal.ManualProgressGoal
2023-03-30 18:07:55 +02:00
nameWithType.vb : ManualProgressGoal.New
fullName.vb : TinyLife.Goals.ManualProgressGoal.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- uid : TinyLife.Goals.GoalInfo
commentId : T:TinyLife.Goals.GoalInfo
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2021-10-14 20:30:40 +02:00
name : GoalInfo
nameWithType : GoalInfo
fullName : TinyLife.Goals.GoalInfo
- uid : TinyLife.Goals.Goal.GetProgress
commentId : M:TinyLife.Goals.Goal.GetProgress
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
name : GetProgress()
nameWithType : Goal.GetProgress()
fullName : TinyLife.Goals.Goal.GetProgress()
spec.csharp :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.ManualProgressGoal.GetProgress*
commentId : Overload:TinyLife.Goals.ManualProgressGoal.GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_GetProgress
2021-10-14 20:30:40 +02:00
name : GetProgress
nameWithType : ManualProgressGoal.GetProgress
fullName : TinyLife.Goals.ManualProgressGoal.GetProgress
- 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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.Goal.Reset
commentId : M:TinyLife.Goals.Goal.Reset
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
name : Reset()
nameWithType : Goal.Reset()
fullName : TinyLife.Goals.Goal.Reset()
spec.csharp :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.ManualProgressGoal.Reset*
commentId : Overload:TinyLife.Goals.ManualProgressGoal.Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_Reset
2021-10-14 20:30:40 +02:00
name : Reset
nameWithType : ManualProgressGoal.Reset
fullName : TinyLife.Goals.ManualProgressGoal.Reset
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
2021-10-14 20:30:40 +02:00
parent : TinyLife.Objects
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
- uid : TinyLife.Objects.PersonLike.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
commentId : M:TinyLife.Objects.PersonLike.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
parent : TinyLife.Objects.PersonLike
2021-11-26 23:42:22 +01:00
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_GetEfficiencyModifier_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2023-03-30 18:07:55 +02:00
name : GetEfficiencyModifier(float, ActionInfo, SkillType, float)
2024-06-09 17:05:30 +02:00
nameWithType : PersonLike.GetEfficiencyModifier(float, ActionInfo, SkillType, float)
fullName : TinyLife.Objects.PersonLike.GetEfficiencyModifier(float, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, float)
nameWithType.vb : PersonLike.GetEfficiencyModifier(Single, ActionInfo, SkillType, Single)
fullName.vb : TinyLife.Objects.PersonLike.GetEfficiencyModifier(Single, TinyLife.Actions.ActionInfo, TinyLife.Skills.SkillType, Single)
2023-03-30 18:07:55 +02:00
name.vb : GetEfficiencyModifier(Single, ActionInfo, SkillType, Single)
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2023-03-30 18:07:55 +02:00
name : GetEfficiencyModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_GetEfficiencyModifier_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike.GetEfficiencyModifier(System.Single,TinyLife.Actions.ActionInfo,TinyLife.Skills.SkillType,System.Single)
2023-03-30 18:07:55 +02:00
name : GetEfficiencyModifier
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_GetEfficiencyModifier_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Skills.SkillType
name : SkillType
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2021-11-26 23:42:22 +01:00
- uid : TinyLife.GameImpl.Speed
commentId : P:TinyLife.GameImpl.Speed
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_Speed
2023-03-30 18:07:55 +02:00
name : Speed
nameWithType : GameImpl.Speed
fullName : TinyLife.GameImpl.Speed
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.ManualProgressGoal.MakeProgress*
commentId : Overload:TinyLife.Goals.ManualProgressGoal.MakeProgress
2024-06-09 17:05:30 +02:00
href : TinyLife.Goals.ManualProgressGoal.html#TinyLife_Goals_ManualProgressGoal_MakeProgress_TinyLife_Objects_PersonLike_System_Single_System_Single_TinyLife_Actions_ActionInfo_TinyLife_Skills_SkillType_System_Single_
2021-10-14 20:30:40 +02:00
name : MakeProgress
nameWithType : ManualProgressGoal.MakeProgress
fullName : TinyLife.Goals.ManualProgressGoal.MakeProgress
- uid : TinyLife.Actions.ActionInfo
commentId : T:TinyLife.Actions.ActionInfo
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2021-10-14 20:30:40 +02:00
name : ActionInfo
nameWithType : ActionInfo
fullName : TinyLife.Actions.ActionInfo
- uid : TinyLife.Skills.SkillType
commentId : T:TinyLife.Skills.SkillType
parent : TinyLife.Skills
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2021-10-14 20:30:40 +02:00
name : SkillType
nameWithType : SkillType
fullName : TinyLife.Skills.SkillType
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
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.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.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.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Skills
commentId : N : TinyLife.Skills
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Skills
nameWithType : TinyLife.Skills
fullName : TinyLife.Skills
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.Skills
name : Skills
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.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.Skills
name : Skills
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.html