2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.JobType
commentId : T:TinyLife.Goals.JobType
id : JobType
parent : TinyLife.Goals
children :
2023-01-16 12:24:01 +01:00
- TinyLife.Goals.JobType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Single,System.ValueTuple{System.Int32,System.Int32},System.DayOfWeek[])
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.Businessperson
2023-04-14 13:00:36 +02:00
- TinyLife.Goals.JobType.CanGetRaise
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.CanQuitOrBeFired
2022-07-04 16:50:43 +02:00
- TinyLife.Goals.JobType.ChoicePrompts
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person,System.Int32)
- TinyLife.Goals.JobType.DailyTaskImportance
- TinyLife.Goals.JobType.DailyTasks
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.Doctor
- TinyLife.Goals.JobType.Firefighter
2024-06-09 17:05:30 +02:00
- TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.GetRequiredPromotionSkills(TinyLife.Goals.Job)
- TinyLife.Goals.JobType.HasSpecialLocalization
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.HourlyPay
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.Icon
2022-07-28 14:58:38 +02:00
- TinyLife.Goals.JobType.IsTimeToWork(System.TimeSpan)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.MaxLevel
2024-10-17 17:28:12 +02:00
- TinyLife.Goals.JobType.Migrations
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.Name
- TinyLife.Goals.JobType.OffWorkDays
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.OnLevelChanged(TinyLife.Goals.Job,System.Int32)
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.OnRaiseReceived(TinyLife.Goals.Job)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.OnWorkFinished(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
- TinyLife.Goals.JobType.OnWorkHoursOver(TinyLife.Goals.Job)
- TinyLife.Goals.JobType.OnWorkStarted(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
- TinyLife.Goals.JobType.OnWorkStartsInAnHour(TinyLife.Goals.Job)
2022-03-09 16:13:05 +01:00
- TinyLife.Goals.JobType.PrimarySchoolStudent
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.Programmer
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.JobType.RequiredAges
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.RequiredPromotionSkills
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.RetailWorker
- TinyLife.Goals.JobType.Scientist
2022-01-08 12:41:09 +01:00
- TinyLife.Goals.JobType.SourceString
2022-09-05 14:19:42 +02:00
- TinyLife.Goals.JobType.Teacher
2023-05-26 15:16:22 +02:00
- TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.Types
2022-11-12 13:53:28 +01:00
- TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
- TinyLife.Goals.JobType.WorkHours
langs :
- csharp
- vb
name : JobType
nameWithType : JobType
fullName : TinyLife.Goals.JobType
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A job type is a singleton containing various kinds of data for a <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> instance.
New jobs can be registered using <xref href="TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
2024-10-26 13:15:46 +02:00
[ JsonConverter(typeof(MigratingStaticJsonConverter<JobType>), new object[] { typeof(JobType), "PrivateTypes", true })]
2021-08-04 06:51:12 +02:00
2022-01-08 12:41:09 +01:00
public class JobType : GenericDataHolder, IGenericDataHolder, IEmotionSource
2021-08-04 06:51:12 +02:00
content.vb : >-
2024-10-26 13:15:46 +02:00
<JsonConverter(GetType(MigratingStaticJsonConverter(Of JobType)), New Object() { GetType(JobType), "PrivateTypes", True })>
2021-08-04 06:51:12 +02:00
2023-03-30 18:07:55 +02:00
Public Class JobType Inherits GenericDataHolder Implements IGenericDataHolder, IEmotionSource
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
- MLEM.Misc.GenericDataHolder
2021-10-14 20:30:40 +02:00
derivedClasses :
- TinyLife.Goals.StudentJobType
2021-08-04 06:51:12 +02:00
implements :
- MLEM.Misc.IGenericDataHolder
2022-01-08 12:41:09 +01:00
- TinyLife.Emotions.IEmotionSource
2021-08-04 06:51:12 +02:00
inheritedMembers :
2022-12-20 13:25:03 +01:00
- MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
2021-08-04 06:51:12 +02:00
- MLEM.Misc.GenericDataHolder.GetData``1(System.String)
- MLEM.Misc.GenericDataHolder.GetDataKeys
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
- TinyLife.Goals.JobType.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Goals.JobType.Types
commentId : F:TinyLife.Goals.JobType.Types
id : Types
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Types
nameWithType : JobType.Types
fullName : TinyLife.Goals.JobType.Types
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A registry of all <xref href="TinyLife.Goals.JobType" data-throw-if-not-resolved="false"></xref> instances in the game and mods.
Register new jobs using <xref href="TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public static readonly ReadOnlyDictionary<string, JobType> Types
2021-08-04 06:51:12 +02:00
return :
2022-05-24 13:36:05 +02:00
type : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.JobType}
content.vb : Public Shared ReadOnly Types As ReadOnlyDictionary(Of String, JobType)
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Goals.JobType.PrimarySchoolStudent
commentId : F:TinyLife.Goals.JobType.PrimarySchoolStudent
id : PrimarySchoolStudent
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : PrimarySchoolStudent
nameWithType : JobType.PrimarySchoolStudent
fullName : TinyLife.Goals.JobType.PrimarySchoolStudent
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType PrimarySchoolStudent
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly PrimarySchoolStudent As JobType
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Goals.JobType.Businessperson
commentId : F:TinyLife.Goals.JobType.Businessperson
id : Businessperson
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Businessperson
nameWithType : JobType.Businessperson
fullName : TinyLife.Goals.JobType.Businessperson
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Businessperson
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Businessperson As JobType
- uid : TinyLife.Goals.JobType.Firefighter
commentId : F:TinyLife.Goals.JobType.Firefighter
id : Firefighter
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Firefighter
nameWithType : JobType.Firefighter
fullName : TinyLife.Goals.JobType.Firefighter
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Firefighter
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Firefighter As JobType
- uid : TinyLife.Goals.JobType.Doctor
commentId : F:TinyLife.Goals.JobType.Doctor
id : Doctor
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Doctor
nameWithType : JobType.Doctor
fullName : TinyLife.Goals.JobType.Doctor
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Doctor
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Doctor As JobType
- uid : TinyLife.Goals.JobType.Programmer
commentId : F:TinyLife.Goals.JobType.Programmer
id : Programmer
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Programmer
nameWithType : JobType.Programmer
fullName : TinyLife.Goals.JobType.Programmer
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Programmer
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Programmer As JobType
- uid : TinyLife.Goals.JobType.RetailWorker
commentId : F:TinyLife.Goals.JobType.RetailWorker
id : RetailWorker
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : RetailWorker
nameWithType : JobType.RetailWorker
fullName : TinyLife.Goals.JobType.RetailWorker
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType RetailWorker
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly RetailWorker As JobType
- uid : TinyLife.Goals.JobType.Teacher
commentId : F:TinyLife.Goals.JobType.Teacher
id : Teacher
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Teacher
nameWithType : JobType.Teacher
fullName : TinyLife.Goals.JobType.Teacher
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Teacher
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Teacher As JobType
- uid : TinyLife.Goals.JobType.Scientist
commentId : F:TinyLife.Goals.JobType.Scientist
id : Scientist
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Scientist
nameWithType : JobType.Scientist
fullName : TinyLife.Goals.JobType.Scientist
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
syntax :
content : public static readonly JobType Scientist
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared ReadOnly Scientist As JobType
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.Name
commentId : F:TinyLife.Goals.JobType.Name
id : Name
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Name
nameWithType : JobType.Name
fullName : TinyLife.Goals.JobType.Name
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The name of this job type
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public readonly string Name
return :
type : System.String
content.vb : Public ReadOnly Name As String
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Goals.JobType.Icon
commentId : F:TinyLife.Goals.JobType.Icon
id : Icon
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Icon
nameWithType : JobType.Icon
fullName : TinyLife.Goals.JobType.Icon
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : This job type's icon.
2022-09-05 14:19:42 +02:00
example : [ ]
syntax :
content : public readonly TextureRegion Icon
return :
type : MLEM.Textures.TextureRegion
content.vb : Public ReadOnly Icon As TextureRegion
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.HourlyPay
commentId : F:TinyLife.Goals.JobType.HourlyPay
id : HourlyPay
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : HourlyPay
nameWithType : JobType.HourlyPay
fullName : TinyLife.Goals.JobType.HourlyPay
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The amount of tiny bucks that being at the job for an hour pays.
2024-06-09 17:05:30 +02:00
To get a modified default hourly pay that also takes <xref href="TinyLife.PerSaveOptions.Difficulty" data-throw-if-not-resolved="false"></xref> into account, use <xref href="TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public readonly float HourlyPay
return :
type : System.Single
content.vb : Public ReadOnly HourlyPay As Single
- uid : TinyLife.Goals.JobType.WorkHours
commentId : F:TinyLife.Goals.JobType.WorkHours
id : WorkHours
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : WorkHours
nameWithType : JobType.WorkHours
fullName : TinyLife.Goals.JobType.WorkHours
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A <xref href="System.Range" data-throw-if-not-resolved="false"></xref> of hours that this job requires each day.
Note that the minimum (Start) value is inclusive, but the maximum (End) value is exclusive.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-01-16 12:24:01 +01:00
content : public readonly (int Start, int End) WorkHours
2021-08-04 06:51:12 +02:00
return :
2023-01-16 12:24:01 +01:00
type : System.ValueTuple{System.Int32,System.Int32}
2023-03-30 18:07:55 +02:00
content.vb : Public ReadOnly WorkHours As (Start As Integer, [End] As Integer)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.OffWorkDays
commentId : F:TinyLife.Goals.JobType.OffWorkDays
id : OffWorkDays
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OffWorkDays
nameWithType : JobType.OffWorkDays
fullName : TinyLife.Goals.JobType.OffWorkDays
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A set of <xref href="System.DayOfWeek" data-throw-if-not-resolved="false"></xref> values which are days off of this job.
On days contained in this list, the <xref href="TinyLife.Goals.JobType.WorkHours" data-throw-if-not-resolved="false"></xref> don't apply.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public readonly DayOfWeek[] OffWorkDays
return :
type : System.DayOfWeek[]
content.vb : Public ReadOnly OffWorkDays As DayOfWeek()
- uid : TinyLife.Goals.JobType.RequiredPromotionSkills
commentId : P:TinyLife.Goals.JobType.RequiredPromotionSkills
id : RequiredPromotionSkills
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : RequiredPromotionSkills
nameWithType : JobType.RequiredPromotionSkills
fullName : TinyLife.Goals.JobType.RequiredPromotionSkills
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A set of skills and their level curves that are required for promotion to the next <xref href="TinyLife.Goals.Job.Level" data-throw-if-not-resolved="false"></xref> of this job type.
The level curve is a multiplier for the job's current <xref href="TinyLife.Goals.Job.Level" data-throw-if-not-resolved="false"></xref> that yields the required skill level. Specifically, the required skill level for any given job level is calculated as <code>(curve * (jobLevel + 1)).Floor()</code>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public (SkillType Type, float LevelCurve)[] RequiredPromotionSkills { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
type : System.ValueTuple{TinyLife.Skills.SkillType,System.Single}[]
2023-03-30 18:07:55 +02:00
content.vb : Public Property RequiredPromotionSkills As (Type As SkillType, LevelCurve As Single)()
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.RequiredPromotionSkills*
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.MaxLevel
commentId : P:TinyLife.Goals.JobType.MaxLevel
id : MaxLevel
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : MaxLevel
nameWithType : JobType.MaxLevel
fullName : TinyLife.Goals.JobType.MaxLevel
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The maximum level of this job, which defaults to 9
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public int MaxLevel { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : System.Int32
content.vb : Public Property MaxLevel As Integer
overload : TinyLife.Goals.JobType.MaxLevel*
- uid : TinyLife.Goals.JobType.HasSpecialLocalization
commentId : P:TinyLife.Goals.JobType.HasSpecialLocalization
id : HasSpecialLocalization
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : HasSpecialLocalization
nameWithType : JobType.HasSpecialLocalization
fullName : TinyLife.Goals.JobType.HasSpecialLocalization
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Whether this job has special localization info for promotion, demotion, going to work and getting home from work.
This value defaults to false.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public bool HasSpecialLocalization { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : System.Boolean
content.vb : Public Property HasSpecialLocalization As Boolean
overload : TinyLife.Goals.JobType.HasSpecialLocalization*
- uid : TinyLife.Goals.JobType.RequiredAges
commentId : P:TinyLife.Goals.JobType.RequiredAges
id : RequiredAges
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : RequiredAges
nameWithType : JobType.RequiredAges
fullName : TinyLife.Goals.JobType.RequiredAges
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The set of ages that a person can have to be able to do this job.
This value defaults to ~Child, which is all age groups except for <xref href="TinyLife.Objects.AgeGroup.Child" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public AgeGroup RequiredAges { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : TinyLife.Objects.AgeGroup
content.vb : Public Property RequiredAges As AgeGroup
overload : TinyLife.Goals.JobType.RequiredAges*
- uid : TinyLife.Goals.JobType.CanQuitOrBeFired
commentId : P:TinyLife.Goals.JobType.CanQuitOrBeFired
id : CanQuitOrBeFired
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : CanQuitOrBeFired
nameWithType : JobType.CanQuitOrBeFired
fullName : TinyLife.Goals.JobType.CanQuitOrBeFired
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Whether a person can quit this job or be fired from it.
This value defaults to true.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public bool CanQuitOrBeFired { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : System.Boolean
content.vb : Public Property CanQuitOrBeFired As Boolean
overload : TinyLife.Goals.JobType.CanQuitOrBeFired*
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Goals.JobType.CanGetRaise
commentId : P:TinyLife.Goals.JobType.CanGetRaise
id : CanGetRaise
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : CanGetRaise
nameWithType : JobType.CanGetRaise
fullName : TinyLife.Goals.JobType.CanGetRaise
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Whether a person can get a raise in this job.
This value defaults to true.
2023-04-26 14:51:19 +02:00
example : [ ]
2023-04-14 13:00:36 +02:00
syntax :
content : public bool CanGetRaise { get; init; }
parameters : [ ]
return :
type : System.Boolean
content.vb : Public Property CanGetRaise As Boolean
overload : TinyLife.Goals.JobType.CanGetRaise*
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.DailyTasks
commentId : P:TinyLife.Goals.JobType.DailyTasks
id : DailyTasks
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : DailyTasks
nameWithType : JobType.DailyTasks
fullName : TinyLife.Goals.JobType.DailyTasks
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A <xref href="TinyLife.Goals.GoalSetInfo" data-throw-if-not-resolved="false"></xref> that determines the daily tasks for this job type.
This value defaults to null, meaning the job will have no daily tasks.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public GoalSetInfo DailyTasks { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : TinyLife.Goals.GoalSetInfo
content.vb : Public Property DailyTasks As GoalSetInfo
overload : TinyLife.Goals.JobType.DailyTasks*
- uid : TinyLife.Goals.JobType.DailyTaskImportance
commentId : P:TinyLife.Goals.JobType.DailyTaskImportance
id : DailyTaskImportance
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : DailyTaskImportance
nameWithType : JobType.DailyTaskImportance
fullName : TinyLife.Goals.JobType.DailyTaskImportance
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The importance of the <xref href="TinyLife.Goals.JobType.DailyTasks" data-throw-if-not-resolved="false"></xref> for job progress.
This value defaults to 0.25, meaning the completion of this job's daily tasks make up 25% of the performance gained the next day.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public float DailyTaskImportance { get; init; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
type : System.Single
content.vb : Public Property DailyTaskImportance As Single
overload : TinyLife.Goals.JobType.DailyTaskImportance*
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Goals.JobType.ChoicePrompts
commentId : P:TinyLife.Goals.JobType.ChoicePrompts
id : ChoicePrompts
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : ChoicePrompts
nameWithType : JobType.ChoicePrompts
fullName : TinyLife.Goals.JobType.ChoicePrompts
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : A set of <xref href="TinyLife.Actions.ChoicePromptInfo" data-throw-if-not-resolved="false"></xref> instances that will randomly be displayed throughout this job type's work day.
2022-07-04 16:50:43 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public ChoicePromptInfo[] ChoicePrompts { get; init; }
2022-07-04 16:50:43 +02:00
parameters : [ ]
return :
2023-03-31 13:26:13 +02:00
type : TinyLife.Actions.ChoicePromptInfo[]
2022-07-04 16:50:43 +02:00
content.vb : Public Property ChoicePrompts As ChoicePromptInfo()
overload : TinyLife.Goals.JobType.ChoicePrompts*
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Goals.JobType.Migrations
commentId : P:TinyLife.Goals.JobType.Migrations
id : Migrations
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Migrations
nameWithType : JobType.Migrations
fullName : TinyLife.Goals.JobType.Migrations
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : The set of migrations that should be applied to <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> instances of this type when loading from disk.
example : [ ]
syntax :
content : public List<Migration<Job>> Migrations { get; init; }
parameters : [ ]
return :
type : System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Goals.Job}}
content.vb : Public Property Migrations As List(Of Migration(Of Job))
overload : TinyLife.Goals.JobType.Migrations*
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Goals.JobType.SourceString
commentId : P:TinyLife.Goals.JobType.SourceString
id : SourceString
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : SourceString
nameWithType : JobType.SourceString
fullName : TinyLife.Goals.JobType.SourceString
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : A (localized) string that is displayed when hovering over an <xref href="TinyLife.Emotions.EmotionModifier" data-throw-if-not-resolved="false"></xref> that has this source
2022-01-08 12:41:09 +01:00
example : [ ]
syntax :
content : public string SourceString { get; }
parameters : [ ]
return :
type : System.String
content.vb : Public ReadOnly Property SourceString As String
overload : TinyLife.Goals.JobType.SourceString*
implements :
- TinyLife.Emotions.IEmotionSource.SourceString
2023-01-16 12:24:01 +01:00
- uid : TinyLife.Goals.JobType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Single,System.ValueTuple{System.Int32,System.Int32},System.DayOfWeek[])
commentId : M:TinyLife.Goals.JobType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Single,System.ValueTuple{System.Int32,System.Int32},System.DayOfWeek[])
id : '#ctor(System.String,MLEM.Textures.TextureRegion,System.Single,System.ValueTuple{System.Int32,System.Int32},System.DayOfWeek[])'
2021-08-04 06:51:12 +02:00
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : JobType(string, TextureRegion, float, (int Start, int End), params DayOfWeek[])
nameWithType : JobType.JobType(string, TextureRegion, float, (int Start, int End), params DayOfWeek[])
fullName : TinyLife.Goals.JobType.JobType(string, MLEM.Textures.TextureRegion, float, (int Start, int End), params System.DayOfWeek[])
2021-08-04 06:51:12 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new job type with the given settings
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-01-16 12:24:01 +01:00
content : public JobType(string name, TextureRegion icon, float hourlyPay, (int Start, int End) workHours, params DayOfWeek[] offWorkDays)
2021-08-04 06:51:12 +02:00
parameters :
- id : name
type : System.String
description : The name of the job
2022-09-05 14:19:42 +02:00
- id : icon
type : MLEM.Textures.TextureRegion
2024-01-07 16:53:47 +01:00
description : This job type's icon.
2021-08-04 06:51:12 +02:00
- id : hourlyPay
type : System.Single
description : The hourly wage that this job yields
- id : workHours
2023-01-16 12:24:01 +01:00
type : System.ValueTuple{System.Int32,System.Int32}
2021-08-04 06:51:12 +02:00
description : A range of hours to work each day
- id : offWorkDays
type : System.DayOfWeek[]
description : The days of the week that are off work
2023-03-30 18:07:55 +02:00
content.vb : Public Sub New(name As String, icon As TextureRegion, hourlyPay As Single, workHours As (Start As Integer, [End] As Integer), ParamArray offWorkDays As DayOfWeek())
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.New(String, TextureRegion, Single, (Start As Integer, End As Integer), ParamArray DayOfWeek())
fullName.vb : TinyLife.Goals.JobType.New(String, MLEM.Textures.TextureRegion, Single, (Start As Integer, End As Integer), ParamArray System.DayOfWeek())
name.vb : New(String, TextureRegion, Single, (Start As Integer, End As Integer), ParamArray DayOfWeek())
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person,System.Int32)
commentId : M:TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person,System.Int32)
id : Construct(TinyLife.Objects.Person,System.Int32)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Construct(Person, int)
nameWithType : JobType.Construct(Person, int)
fullName : TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person, int)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> from this type's information
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-10-14 20:30:40 +02:00
content : public Job Construct(Person person, int level = 0)
2021-08-04 06:51:12 +02:00
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person that should have the job
2021-10-14 20:30:40 +02:00
- id : level
type : System.Int32
description : The level to start this job with, defaults to 0
2021-08-04 06:51:12 +02:00
return :
type : TinyLife.Goals.Job
description : A new job instance
2021-10-14 20:30:40 +02:00
content.vb : Public Function Construct(person As Person, level As Integer = 0) As Job
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.Construct*
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.Construct(Person, Integer)
fullName.vb : TinyLife.Goals.JobType.Construct(TinyLife.Objects.Person, Integer)
name.vb : Construct(Person, Integer)
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.JobType.IsTimeToWork(System.TimeSpan)
commentId : M:TinyLife.Goals.JobType.IsTimeToWork(System.TimeSpan)
id : IsTimeToWork(System.TimeSpan)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2022-07-28 14:58:38 +02:00
name : IsTimeToWork(TimeSpan)
nameWithType : JobType.IsTimeToWork(TimeSpan)
fullName : TinyLife.Goals.JobType.IsTimeToWork(System.TimeSpan)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns whether the given time (or the game's current time) is in the bounds of <xref href="TinyLife.Goals.JobType.WorkHours" data-throw-if-not-resolved="false"></xref> and outside of the bounds of <xref href="TinyLife.Goals.JobType.OffWorkDays" data-throw-if-not-resolved="false"></xref>. Note that this method does not check additional criteria like whether a person is on vacation, based on <xref href="TinyLife.Goals.Job.DaysOnVacation" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-07-28 14:58:38 +02:00
content : public virtual bool IsTimeToWork(TimeSpan time)
2021-08-04 06:51:12 +02:00
parameters :
- id : time
2022-07-28 14:58:38 +02:00
type : System.TimeSpan
description : The current time.
2021-08-04 06:51:12 +02:00
return :
type : System.Boolean
description : true if it is time to work, false otherwise
2022-07-28 14:58:38 +02:00
content.vb : Public Overridable Function IsTimeToWork(time As TimeSpan) As Boolean
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.IsTimeToWork*
2023-05-26 15:16:22 +02:00
- uid : TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
commentId : M:TinyLife.Goals.JobType.ToScheduleString(System.Nullable{System.TimeSpan})
id : ToScheduleString(System.Nullable{System.TimeSpan})
2021-08-04 06:51:12 +02:00
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-05-26 15:16:22 +02:00
name : ToScheduleString(TimeSpan?)
nameWithType : JobType.ToScheduleString(TimeSpan?)
fullName : TinyLife.Goals.JobType.ToScheduleString(System.TimeSpan?)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Returns a string representation of the schedule.
The string includes a line that states the <xref href="TinyLife.Goals.JobType.WorkHours" data-throw-if-not-resolved="false"></xref> and a line that states the <xref href="TinyLife.Goals.JobType.OffWorkDays" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-05-26 15:16:22 +02:00
content : public virtual string ToScheduleString(TimeSpan? currentTime = null)
2022-07-28 14:58:38 +02:00
parameters :
2023-05-26 15:16:22 +02:00
- id : currentTime
type : System.Nullable{System.TimeSpan}
2021-08-04 06:51:12 +02:00
return :
type : System.String
2024-01-07 16:53:47 +01:00
description : A string representation of this job's schedule
2023-05-26 15:16:22 +02:00
content.vb : Public Overridable Function ToScheduleString(currentTime As TimeSpan? = Nothing) As String
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.ToScheduleString*
- uid : TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
commentId : M:TinyLife.Goals.JobType.GetDisplayName(System.Nullable{System.Int32})
id : GetDisplayName(System.Nullable{System.Int32})
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetDisplayName(int?)
nameWithType : JobType.GetDisplayName(int?)
fullName : TinyLife.Goals.JobType.GetDisplayName(int?)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Returns the display name of this <xref href="TinyLife.Goals.JobType" data-throw-if-not-resolved="false"></xref>, based on the given <code class="paramref">level</code>.
If no level is given, the job's regular name, without the level-based suffix, is returned.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-04-27 12:59:12 +02:00
content : public virtual string GetDisplayName(int? level = null)
2021-08-04 06:51:12 +02:00
parameters :
- id : level
type : System.Nullable{System.Int32}
description : The level
return :
type : System.String
2024-01-07 16:53:47 +01:00
description : A localized string representing this job's name
2021-10-14 20:30:40 +02:00
content.vb : Public Overridable Function GetDisplayName(level As Integer? = Nothing) As String
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.GetDisplayName*
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.GetDisplayName(Integer?)
fullName.vb : TinyLife.Goals.JobType.GetDisplayName(Integer?)
name.vb : GetDisplayName(Integer?)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.GetRequiredPromotionSkills(TinyLife.Goals.Job)
commentId : M:TinyLife.Goals.JobType.GetRequiredPromotionSkills(TinyLife.Goals.Job)
id : GetRequiredPromotionSkills(TinyLife.Goals.Job)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2021-10-14 20:30:40 +02:00
name : GetRequiredPromotionSkills(Job)
nameWithType : JobType.GetRequiredPromotionSkills(Job)
fullName : TinyLife.Goals.JobType.GetRequiredPromotionSkills(TinyLife.Goals.Job)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns the set of skills and levels that are required to promote from the given <code class="paramref">job</code>'s <xref href="TinyLife.Goals.Job.Level" data-throw-if-not-resolved="false"></xref> to the next level
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-10-14 20:30:40 +02:00
content : public virtual IEnumerable<(SkillType Type, int Level)> GetRequiredPromotionSkills(Job job)
2021-08-04 06:51:12 +02:00
parameters :
2021-10-14 20:30:40 +02:00
- id : job
type : TinyLife.Goals.Job
description : The current job
2021-08-04 06:51:12 +02:00
return :
type : System.Collections.Generic.IEnumerable{System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}}
description : A set of skill types and their required levels for promotion
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Function GetRequiredPromotionSkills(job As Job) As IEnumerable(Of (Type As SkillType, Level As Integer))
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.GetRequiredPromotionSkills*
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.OnWorkStartsInAnHour(TinyLife.Goals.Job)
commentId : M:TinyLife.Goals.JobType.OnWorkStartsInAnHour(TinyLife.Goals.Job)
id : OnWorkStartsInAnHour(TinyLife.Goals.Job)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OnWorkStartsInAnHour(Job)
nameWithType : JobType.OnWorkStartsInAnHour(Job)
fullName : TinyLife.Goals.JobType.OnWorkStartsInAnHour(TinyLife.Goals.Job)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when the given <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> instance starts work in an hour for this job.
By default, a notification is displayed that instructs the person to head to work soon.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual void OnWorkStartsInAnHour(Job job)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
content.vb : Public Overridable Sub OnWorkStartsInAnHour(job As Job)
overload : TinyLife.Goals.JobType.OnWorkStartsInAnHour*
- uid : TinyLife.Goals.JobType.OnWorkHoursOver(TinyLife.Goals.Job)
commentId : M:TinyLife.Goals.JobType.OnWorkHoursOver(TinyLife.Goals.Job)
id : OnWorkHoursOver(TinyLife.Goals.Job)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OnWorkHoursOver(Job)
nameWithType : JobType.OnWorkHoursOver(Job)
fullName : TinyLife.Goals.JobType.OnWorkHoursOver(TinyLife.Goals.Job)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when the work hours for the given <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> instance are over for this job.
Note that this method is also called if the person didn't go to work, is on vacation, or left early.
By default, the <xref href="TinyLife.Goals.JobType.DailyTasks" data-throw-if-not-resolved="false"></xref> are reset.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual void OnWorkHoursOver(Job job)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
content.vb : Public Overridable Sub OnWorkHoursOver(job As Job)
overload : TinyLife.Goals.JobType.OnWorkHoursOver*
- uid : TinyLife.Goals.JobType.OnWorkFinished(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
commentId : M:TinyLife.Goals.JobType.OnWorkFinished(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
id : OnWorkFinished(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OnWorkFinished(Job, WorkAction)
nameWithType : JobType.OnWorkFinished(Job, WorkAction)
fullName : TinyLife.Goals.JobType.OnWorkFinished(TinyLife.Goals.Job, TinyLife.Actions.WorkAction)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when a <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> finishes a <xref href="TinyLife.Actions.WorkAction" data-throw-if-not-resolved="false"></xref> for this job.
By default, some emotion modifiers are randomly applied.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual void OnWorkFinished(Job job, WorkAction action)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
- id : action
type : TinyLife.Actions.WorkAction
description : The work action that was completed
content.vb : Public Overridable Sub OnWorkFinished(job As Job, action As WorkAction)
overload : TinyLife.Goals.JobType.OnWorkFinished*
- uid : TinyLife.Goals.JobType.OnWorkStarted(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
commentId : M:TinyLife.Goals.JobType.OnWorkStarted(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
id : OnWorkStarted(TinyLife.Goals.Job,TinyLife.Actions.WorkAction)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OnWorkStarted(Job, WorkAction)
nameWithType : JobType.OnWorkStarted(Job, WorkAction)
fullName : TinyLife.Goals.JobType.OnWorkStarted(TinyLife.Goals.Job, TinyLife.Actions.WorkAction)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when a <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> starts a <xref href="TinyLife.Actions.WorkAction" data-throw-if-not-resolved="false"></xref> for this job.
By default, this method does nothing.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual void OnWorkStarted(Job job, WorkAction action)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
- id : action
type : TinyLife.Actions.WorkAction
description : The work action that was started
content.vb : Public Overridable Sub OnWorkStarted(job As Job, action As WorkAction)
overload : TinyLife.Goals.JobType.OnWorkStarted*
- uid : TinyLife.Goals.JobType.OnLevelChanged(TinyLife.Goals.Job,System.Int32)
commentId : M:TinyLife.Goals.JobType.OnLevelChanged(TinyLife.Goals.Job,System.Int32)
id : OnLevelChanged(TinyLife.Goals.Job,System.Int32)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : OnLevelChanged(Job, int)
nameWithType : JobType.OnLevelChanged(Job, int)
fullName : TinyLife.Goals.JobType.OnLevelChanged(TinyLife.Goals.Job, int)
2021-10-14 20:30:40 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when a <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> is promoted or demoted for this job.
By default, some emotion modifiers are applied.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual void OnLevelChanged(Job job, int levelDifference)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
- id : levelDifference
type : System.Int32
description : The level difference that was applied. If the person was demoted, this value is -1, else it is 1.
content.vb : Public Overridable Sub OnLevelChanged(job As Job, levelDifference As Integer)
overload : TinyLife.Goals.JobType.OnLevelChanged*
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.OnLevelChanged(Job, Integer)
fullName.vb : TinyLife.Goals.JobType.OnLevelChanged(TinyLife.Goals.Job, Integer)
name.vb : OnLevelChanged(Job, Integer)
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Goals.JobType.OnRaiseReceived(TinyLife.Goals.Job)
commentId : M:TinyLife.Goals.JobType.OnRaiseReceived(TinyLife.Goals.Job)
id : OnRaiseReceived(TinyLife.Goals.Job)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : OnRaiseReceived(Job)
nameWithType : JobType.OnRaiseReceived(Job)
fullName : TinyLife.Goals.JobType.OnRaiseReceived(TinyLife.Goals.Job)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when a <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> receives a raise using <xref href="TinyLife.Goals.Job.GetRaise" data-throw-if-not-resolved="false"></xref>.
By default, some emotion modifiers are applied.
2022-09-05 14:19:42 +02:00
example : [ ]
syntax :
content : public virtual void OnRaiseReceived(Job job)
parameters :
- id : job
type : TinyLife.Goals.Job
description : The job instance
content.vb : Public Overridable Sub OnRaiseReceived(job As Job)
overload : TinyLife.Goals.JobType.OnRaiseReceived*
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
commentId : M:TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
id : UpdateWorking(TinyLife.Goals.Job,TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : UpdateWorking(Job, WorkAction, TimeSpan, float)
nameWithType : JobType.UpdateWorking(Job, WorkAction, TimeSpan, float)
fullName : TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job, TinyLife.Actions.WorkAction, System.TimeSpan, float)
2022-11-12 13:53:28 +01:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Updates this job type's <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref> instance. By default, this method causes students to gain skills in <xref href="TinyLife.Goals.StudentJobType" data-throw-if-not-resolved="false"></xref>.
This is called in <xref href="TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>.
2022-12-20 13:25:03 +01:00
example : [ ]
2022-11-12 13:53:28 +01:00
syntax :
content : public virtual void UpdateWorking(Job job, WorkAction action, TimeSpan passedInGame, float speedMultiplier)
parameters :
- id : job
type : TinyLife.Goals.Job
2022-12-20 13:25:03 +01:00
description : The job instance.
2022-11-12 13:53:28 +01:00
- id : action
type : TinyLife.Actions.WorkAction
2022-12-20 13:25:03 +01:00
description : The action that is currently being executed.
2022-11-12 13:53:28 +01:00
- id : passedInGame
type : System.TimeSpan
2022-12-20 13:25:03 +01:00
description : The amount of time that has passed in game since the last update.
2022-11-12 13:53:28 +01:00
- id : speedMultiplier
type : System.Single
2024-01-07 16:53:47 +01:00
description : The game's current speed multiplier.
2022-11-12 13:53:28 +01:00
content.vb : Public Overridable Sub UpdateWorking(job As Job, action As WorkAction, passedInGame As TimeSpan, speedMultiplier As Single)
overload : TinyLife.Goals.JobType.UpdateWorking*
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.UpdateWorking(Job, WorkAction, TimeSpan, Single)
fullName.vb : TinyLife.Goals.JobType.UpdateWorking(TinyLife.Goals.Job, TinyLife.Actions.WorkAction, System.TimeSpan, Single)
name.vb : UpdateWorking(Job, WorkAction, TimeSpan, Single)
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
commentId : M:TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
id : GetDefaultHourlyPay(TinyLife.Objects.Person)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : GetDefaultHourlyPay(Person)
nameWithType : JobType.GetDefaultHourlyPay(Person)
fullName : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : Returns the default hourly pay for this job type, based on the <xref href="TinyLife.Goals.JobType.HourlyPay" data-throw-if-not-resolved="false"></xref>, as well as the passed <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Objects.PersonLike.Difficulty" data-throw-if-not-resolved="false"></xref>.
example : [ ]
syntax :
content : public virtual float GetDefaultHourlyPay(Person person)
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person for which to return the default hourly pay.
return :
type : System.Single
description : The default hourly pay for the given person.
content.vb : Public Overridable Function GetDefaultHourlyPay(person As Person) As Single
overload : TinyLife.Goals.JobType.GetDefaultHourlyPay*
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
commentId : M:TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
id : Register(TinyLife.Goals.JobType)
parent : TinyLife.Goals.JobType
langs :
- csharp
- vb
name : Register(JobType)
nameWithType : JobType.Register(JobType)
fullName : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Registers the given job type to the <xref href="TinyLife.Goals.JobType.Types" data-throw-if-not-resolved="false"></xref> registry
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-10-14 20:30:40 +02:00
content : public static JobType Register(JobType type)
2021-08-04 06:51:12 +02:00
parameters :
- id : type
type : TinyLife.Goals.JobType
description : The type to register
2021-10-14 20:30:40 +02:00
return :
type : TinyLife.Goals.JobType
content.vb : Public Shared Function Register(type As JobType) As JobType
2021-08-04 06:51:12 +02:00
overload : TinyLife.Goals.JobType.Register*
references :
- uid : TinyLife.Goals.Job
commentId : T:TinyLife.Goals.Job
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html
2021-08-04 06:51:12 +02:00
name : Job
nameWithType : Job
fullName : TinyLife.Goals.Job
- uid : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
commentId : M:TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Register_TinyLife_Goals_JobType_
2021-10-14 20:30:40 +02:00
name : Register(JobType)
nameWithType : JobType.Register(JobType)
fullName : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
spec.csharp :
- uid : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
name : Register
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Register_TinyLife_Goals_JobType_
2021-10-14 20:30:40 +02:00
- name : (
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : TinyLife.Goals.JobType.Register(TinyLife.Goals.JobType)
name : Register
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Register_TinyLife_Goals_JobType_
2021-10-14 20:30:40 +02:00
- name : (
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-10-14 20:30:40 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- uid : MLEM.Misc.GenericDataHolder
commentId : T:MLEM.Misc.GenericDataHolder
parent : MLEM.Misc
isExternal : true
name : GenericDataHolder
nameWithType : GenericDataHolder
fullName : MLEM.Misc.GenericDataHolder
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Emotions.IEmotionSource
commentId : T:TinyLife.Emotions.IEmotionSource
parent : TinyLife.Emotions
2024-01-07 16:53:47 +01:00
href : TinyLife.Emotions.IEmotionSource.html
2022-01-08 12:41:09 +01:00
name : IEmotionSource
nameWithType : IEmotionSource
fullName : TinyLife.Emotions.IEmotionSource
2022-12-20 13:25:03 +01:00
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Misc.GenericDataHolder
definition : MLEM.Misc.GenericDataHolder.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 : GenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.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.Misc.GenericDataHolder.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-08-04 06:51:12 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent : MLEM.Misc.GenericDataHolder
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : GetData<T>(string)
nameWithType : GenericDataHolder.GetData<T>(string)
fullName : MLEM.Misc.GenericDataHolder.GetData<T>(string)
2021-08-04 06:51:12 +02:00
nameWithType.vb : GenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.GetData(Of T)(String)
2021-08-04 06:51:12 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : )
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
commentId : M:MLEM.Misc.GenericDataHolder.GetDataKeys
parent : MLEM.Misc.GenericDataHolder
isExternal : true
name : GetDataKeys()
nameWithType : GenericDataHolder.GetDataKeys()
fullName : MLEM.Misc.GenericDataHolder.GetDataKeys()
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.JobType.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<JobType>(JobType)
nameWithType : Extensions.JsonCopy<JobType>(JobType)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.JobType>(TinyLife.Goals.JobType)
nameWithType.vb : Extensions.JsonCopy(Of JobType)(JobType)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.JobType)(TinyLife.Goals.JobType)
name.vb : JsonCopy(Of JobType)(JobType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.JobType)
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.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.JobType)
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.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-08-04 06:51:12 +02:00
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType
commentId : T:TinyLife.Goals.JobType
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-10-14 20:30:40 +02:00
name : JobType
nameWithType : JobType
fullName : TinyLife.Goals.JobType
2021-08-04 06:51:12 +02:00
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name : System
nameWithType : System
fullName : System
- 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-01-08 12:41:09 +01:00
- uid : TinyLife.Emotions
commentId : N : TinyLife.Emotions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-08 12:41:09 +01:00
name : TinyLife.Emotions
nameWithType : TinyLife.Emotions
fullName : TinyLife.Emotions
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.Emotions
name : Emotions
2024-01-07 16:53:47 +01:00
href : TinyLife.Emotions.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.Emotions
name : Emotions
2024-01-07 16:53:47 +01:00
href : TinyLife.Emotions.html
2022-12-20 13:25:03 +01:00
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Misc.GenericDataHolder.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 : GenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.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.Misc.GenericDataHolder.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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.JobType}
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Goals.JobType}
parent : System.Collections.ObjectModel
definition : System.Collections.ObjectModel.ReadOnlyDictionary`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name : ReadOnlyDictionary<string, JobType>
nameWithType : ReadOnlyDictionary<string, JobType>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.Goals.JobType>
2022-05-24 13:36:05 +02:00
nameWithType.vb : ReadOnlyDictionary(Of String, JobType)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Goals.JobType)
2022-05-24 13:36:05 +02:00
name.vb : ReadOnlyDictionary(Of String, JobType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name : <
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType
name : JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html
2021-08-04 06:51:12 +02:00
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary`2
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2022-05-24 13:36:05 +02:00
name : ReadOnlyDictionary<TKey, TValue>
nameWithType : ReadOnlyDictionary<TKey, TValue>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>
nameWithType.vb : ReadOnlyDictionary(Of TKey, TValue)
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb : ReadOnlyDictionary(Of TKey, TValue)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name : <
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- name : TValue
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- name : TValue
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel
commentId : N : System.Collections.ObjectModel
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name : System.Collections.ObjectModel
nameWithType : System.Collections.ObjectModel
fullName : System.Collections.ObjectModel
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
2021-08-04 06:51:12 +02:00
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
2022-09-05 14:19:42 +02:00
- uid : MLEM.Textures.TextureRegion
commentId : T:MLEM.Textures.TextureRegion
parent : MLEM.Textures
isExternal : true
name : TextureRegion
nameWithType : TextureRegion
fullName : MLEM.Textures.TextureRegion
- uid : MLEM.Textures
commentId : N : MLEM.Textures
isExternal : true
name : MLEM.Textures
nameWithType : MLEM.Textures
fullName : MLEM.Textures
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
2024-06-09 17:05:30 +02:00
- uid : TinyLife.PerSaveOptions.Difficulty
commentId : F:TinyLife.PerSaveOptions.Difficulty
href : TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Difficulty
name : Difficulty
nameWithType : PerSaveOptions.Difficulty
fullName : TinyLife.PerSaveOptions.Difficulty
- uid : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
commentId : M:TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
parent : TinyLife.Goals.JobType
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetDefaultHourlyPay_TinyLife_Objects_Person_
name : GetDefaultHourlyPay(Person)
nameWithType : JobType.GetDefaultHourlyPay(Person)
fullName : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
spec.csharp :
- uid : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
name : GetDefaultHourlyPay
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetDefaultHourlyPay_TinyLife_Objects_Person_
- name : (
- uid : TinyLife.Objects.Person
name : Person
href : TinyLife.Objects.Person.html
- name : )
spec.vb :
- uid : TinyLife.Goals.JobType.GetDefaultHourlyPay(TinyLife.Objects.Person)
name : GetDefaultHourlyPay
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetDefaultHourlyPay_TinyLife_Objects_Person_
- name : (
- uid : TinyLife.Objects.Person
name : Person
href : TinyLife.Objects.Person.html
- name : )
2021-08-04 06:51:12 +02:00
- 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-08-04 06:51:12 +02:00
- uid : System.Range
commentId : T:System.Range
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.range
name : Range
nameWithType : Range
fullName : System.Range
2023-01-16 12:24:01 +01:00
- uid : System.ValueTuple{System.Int32,System.Int32}
commentId : T:System.ValueTuple{System.Int32,System.Int32}
parent : System
definition : System.ValueTuple`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : (int Start, int End)
nameWithType : (int Start, int End)
fullName : (int Start, int End)
nameWithType.vb : (Start As Integer, End As Integer)
fullName.vb : (Start As Integer, End As Integer)
name.vb : (Start As Integer, End As Integer)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- name : (
2021-08-04 06:51:12 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : " "
- uid : System.ValueTuple{System.Int32,System.Int32}.Start
name : Start
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.start
- name : ','
- name : " "
2023-01-16 12:24:01 +01:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
2023-01-16 12:24:01 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : " "
- uid : System.ValueTuple{System.Int32,System.Int32}.End
name : End
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.end
- name : )
2021-08-04 06:51:12 +02:00
spec.vb :
2023-03-30 18:07:55 +02:00
- name : (
- uid : System.ValueTuple{System.Int32,System.Int32}.Start
name : Start
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.start
- name : " "
- name : As
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.ValueTuple{System.Int32,System.Int32}.End
name : End
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-system.int32,system.int32-.end
- name : " "
- name : As
- name : " "
2023-01-16 12:24:01 +01:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
2023-01-16 12:24:01 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
2021-08-04 06:51:12 +02:00
- name : )
2023-01-16 12:24:01 +01:00
- uid : System.ValueTuple`2
commentId : T:System.ValueTuple`2
2023-03-30 18:07:55 +02:00
name : (T1, T2)
nameWithType : (T1, T2)
fullName : (T1, T2)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- name : (
2023-01-16 12:24:01 +01:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2023-01-16 12:24:01 +01:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
spec.vb :
2023-03-30 18:07:55 +02:00
- name : (
2023-01-16 12:24:01 +01:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2023-01-16 12:24:01 +01:00
- name : T2
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.DayOfWeek
commentId : T:System.DayOfWeek
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.dayofweek
2021-08-04 06:51:12 +02:00
name : DayOfWeek
nameWithType : DayOfWeek
fullName : System.DayOfWeek
- uid : TinyLife.Goals.JobType.WorkHours
commentId : F:TinyLife.Goals.JobType.WorkHours
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_WorkHours
2021-10-14 20:30:40 +02:00
name : WorkHours
nameWithType : JobType.WorkHours
fullName : TinyLife.Goals.JobType.WorkHours
2021-08-04 06:51:12 +02:00
- uid : System.DayOfWeek[]
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.dayofweek
2021-08-04 06:51:12 +02:00
name : DayOfWeek[]
nameWithType : DayOfWeek[]
fullName : System.DayOfWeek[]
nameWithType.vb : DayOfWeek()
fullName.vb : System.DayOfWeek()
name.vb : DayOfWeek()
spec.csharp :
- uid : System.DayOfWeek
name : DayOfWeek
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.dayofweek
- name : '['
- name : ']'
2021-08-04 06:51:12 +02:00
spec.vb :
- uid : System.DayOfWeek
name : DayOfWeek
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.dayofweek
- name : (
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.Job.Level
commentId : P:TinyLife.Goals.Job.Level
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_Level
2023-03-30 18:07:55 +02:00
name : Level
nameWithType : Job.Level
fullName : TinyLife.Goals.Job.Level
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.RequiredPromotionSkills*
commentId : Overload:TinyLife.Goals.JobType.RequiredPromotionSkills
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_RequiredPromotionSkills
2021-08-04 06:51:12 +02:00
name : RequiredPromotionSkills
nameWithType : JobType.RequiredPromotionSkills
fullName : TinyLife.Goals.JobType.RequiredPromotionSkills
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Single}[]
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Skills.SkillType.html
2023-03-30 18:07:55 +02:00
name : (SkillType Type, float Amount)[]
nameWithType : (SkillType Type, float Amount)[]
fullName : (TinyLife.Skills.SkillType Type, float Amount)[]
nameWithType.vb : (Type As SkillType, Amount As Single)()
fullName.vb : (Type As TinyLife.Skills.SkillType, Amount As Single)()
name.vb : (Type As SkillType, Amount As Single)()
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- name : (
2021-08-04 06:51:12 +02:00
- 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 : " "
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Single}.Type
name : Type
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.single-.type
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : " "
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Single}.Amount
name : Amount
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.single-.amount
- name : )
- name : '['
- name : ']'
2021-08-04 06:51:12 +02:00
spec.vb :
2023-03-30 18:07:55 +02:00
- name : (
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Single}.Type
name : Type
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.single-.type
- name : " "
- name : As
- name : " "
2021-08-04 06:51:12 +02:00
- 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.ValueTuple{TinyLife.Skills.SkillType,System.Single}.Amount
name : Amount
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.single-.amount
- name : " "
- name : As
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
- name : (
2021-08-04 06:51:12 +02:00
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.MaxLevel*
commentId : Overload:TinyLife.Goals.JobType.MaxLevel
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_MaxLevel
2021-10-14 20:30:40 +02:00
name : MaxLevel
nameWithType : JobType.MaxLevel
fullName : TinyLife.Goals.JobType.MaxLevel
- uid : System.Int32
commentId : T:System.Int32
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int
nameWithType : int
fullName : int
nameWithType.vb : Integer
fullName.vb : Integer
name.vb : Integer
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.HasSpecialLocalization*
commentId : Overload:TinyLife.Goals.JobType.HasSpecialLocalization
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_HasSpecialLocalization
2021-10-14 20:30:40 +02:00
name : HasSpecialLocalization
nameWithType : JobType.HasSpecialLocalization
fullName : TinyLife.Goals.JobType.HasSpecialLocalization
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.AgeGroup.Child
commentId : F:TinyLife.Objects.AgeGroup.Child
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.AgeGroup.html#TinyLife_Objects_AgeGroup_Child
2023-03-30 18:07:55 +02:00
name : Child
nameWithType : AgeGroup.Child
fullName : TinyLife.Objects.AgeGroup.Child
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.RequiredAges*
commentId : Overload:TinyLife.Goals.JobType.RequiredAges
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_RequiredAges
2021-10-14 20:30:40 +02:00
name : RequiredAges
nameWithType : JobType.RequiredAges
fullName : TinyLife.Goals.JobType.RequiredAges
- uid : TinyLife.Objects.AgeGroup
commentId : T:TinyLife.Objects.AgeGroup
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.AgeGroup.html
2021-10-14 20:30:40 +02:00
name : AgeGroup
nameWithType : AgeGroup
fullName : TinyLife.Objects.AgeGroup
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.CanQuitOrBeFired*
commentId : Overload:TinyLife.Goals.JobType.CanQuitOrBeFired
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_CanQuitOrBeFired
2021-10-14 20:30:40 +02:00
name : CanQuitOrBeFired
nameWithType : JobType.CanQuitOrBeFired
fullName : TinyLife.Goals.JobType.CanQuitOrBeFired
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Goals.JobType.CanGetRaise*
commentId : Overload:TinyLife.Goals.JobType.CanGetRaise
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_CanGetRaise
2023-04-14 13:00:36 +02:00
name : CanGetRaise
nameWithType : JobType.CanGetRaise
fullName : TinyLife.Goals.JobType.CanGetRaise
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSetInfo
commentId : T:TinyLife.Goals.GoalSetInfo
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2021-10-14 20:30:40 +02:00
name : GoalSetInfo
nameWithType : GoalSetInfo
fullName : TinyLife.Goals.GoalSetInfo
- uid : TinyLife.Goals.JobType.DailyTasks*
commentId : Overload:TinyLife.Goals.JobType.DailyTasks
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_DailyTasks
2021-10-14 20:30:40 +02:00
name : DailyTasks
nameWithType : JobType.DailyTasks
fullName : TinyLife.Goals.JobType.DailyTasks
- uid : TinyLife.Goals.JobType.DailyTasks
commentId : P:TinyLife.Goals.JobType.DailyTasks
parent : TinyLife.Goals.JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_DailyTasks
2021-10-14 20:30:40 +02:00
name : DailyTasks
nameWithType : JobType.DailyTasks
fullName : TinyLife.Goals.JobType.DailyTasks
- uid : TinyLife.Goals.JobType.DailyTaskImportance*
commentId : Overload:TinyLife.Goals.JobType.DailyTaskImportance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_DailyTaskImportance
2021-10-14 20:30:40 +02:00
name : DailyTaskImportance
nameWithType : JobType.DailyTaskImportance
fullName : TinyLife.Goals.JobType.DailyTaskImportance
2023-03-31 13:26:13 +02:00
- uid : TinyLife.Actions.ChoicePromptInfo
commentId : T:TinyLife.Actions.ChoicePromptInfo
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ChoicePromptInfo.html
2022-07-04 16:50:43 +02:00
name : ChoicePromptInfo
nameWithType : ChoicePromptInfo
2023-03-31 13:26:13 +02:00
fullName : TinyLife.Actions.ChoicePromptInfo
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Goals.JobType.ChoicePrompts*
commentId : Overload:TinyLife.Goals.JobType.ChoicePrompts
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_ChoicePrompts
2022-07-04 16:50:43 +02:00
name : ChoicePrompts
nameWithType : JobType.ChoicePrompts
fullName : TinyLife.Goals.JobType.ChoicePrompts
2023-03-31 13:26:13 +02:00
- uid : TinyLife.Actions.ChoicePromptInfo[]
2022-07-04 16:50:43 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ChoicePromptInfo.html
2022-07-04 16:50:43 +02:00
name : ChoicePromptInfo[]
nameWithType : ChoicePromptInfo[]
2023-03-31 13:26:13 +02:00
fullName : TinyLife.Actions.ChoicePromptInfo[]
2022-07-04 16:50:43 +02:00
nameWithType.vb : ChoicePromptInfo()
2023-03-31 13:26:13 +02:00
fullName.vb : TinyLife.Actions.ChoicePromptInfo()
2022-07-04 16:50:43 +02:00
name.vb : ChoicePromptInfo()
spec.csharp :
2023-03-31 13:26:13 +02:00
- uid : TinyLife.Actions.ChoicePromptInfo
2022-07-04 16:50:43 +02:00
name : ChoicePromptInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ChoicePromptInfo.html
2023-03-30 18:07:55 +02:00
- name : '['
- name : ']'
2022-07-04 16:50:43 +02:00
spec.vb :
2023-03-31 13:26:13 +02:00
- uid : TinyLife.Actions.ChoicePromptInfo
2022-07-04 16:50:43 +02:00
name : ChoicePromptInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ChoicePromptInfo.html
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
href : TinyLife.html
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
spec.csharp :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.Actions
name : Actions
href : TinyLife.Actions.html
spec.vb :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.Actions
name : Actions
href : TinyLife.Actions.html
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Goals.JobType.Migrations*
commentId : Overload:TinyLife.Goals.JobType.Migrations
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Migrations
name : Migrations
nameWithType : JobType.Migrations
fullName : TinyLife.Goals.JobType.Migrations
- uid : System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Goals.Job}}
commentId : T:System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Goals.Job}}
parent : System.Collections.Generic
definition : System.Collections.Generic.List`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<Migration<Job>>
nameWithType : List<Migration<Job>>
fullName : System.Collections.Generic.List<TinyLife.Utilities.Migration<TinyLife.Goals.Job>>
nameWithType.vb : List(Of Migration(Of Job))
fullName.vb : System.Collections.Generic.List(Of TinyLife.Utilities.Migration(Of TinyLife.Goals.Job))
name.vb : List(Of Migration(Of Job))
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : <
- uid : TinyLife.Goals.Job
name : Job
href : TinyLife.Goals.Job.html
- name : '>'
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : (
- name : Of
- name : " "
- uid : TinyLife.Goals.Job
name : Job
href : TinyLife.Goals.Job.html
- name : )
- name : )
- uid : System.Collections.Generic.List`1
commentId : T:System.Collections.Generic.List`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<T>
nameWithType : List<T>
fullName : System.Collections.Generic.List<T>
nameWithType.vb : List(Of T)
fullName.vb : System.Collections.Generic.List(Of T)
name.vb : List(Of T)
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : (
- name : Of
- name : " "
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
2024-01-07 16:53:47 +01:00
- uid : TinyLife.Emotions.EmotionModifier
commentId : T:TinyLife.Emotions.EmotionModifier
parent : TinyLife.Emotions
href : TinyLife.Emotions.EmotionModifier.html
name : EmotionModifier
nameWithType : EmotionModifier
fullName : TinyLife.Emotions.EmotionModifier
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Goals.JobType.SourceString*
commentId : Overload:TinyLife.Goals.JobType.SourceString
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_SourceString
2022-01-08 12:41:09 +01:00
name : SourceString
nameWithType : JobType.SourceString
fullName : TinyLife.Goals.JobType.SourceString
- uid : TinyLife.Emotions.IEmotionSource.SourceString
commentId : P:TinyLife.Emotions.IEmotionSource.SourceString
parent : TinyLife.Emotions.IEmotionSource
2024-01-07 16:53:47 +01:00
href : TinyLife.Emotions.IEmotionSource.html#TinyLife_Emotions_IEmotionSource_SourceString
2022-01-08 12:41:09 +01:00
name : SourceString
nameWithType : IEmotionSource.SourceString
fullName : TinyLife.Emotions.IEmotionSource.SourceString
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.#ctor*
commentId : Overload:TinyLife.Goals.JobType.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType__ctor_System_String_MLEM_Textures_TextureRegion_System_Single_System_ValueTuple_System_Int32_System_Int32__System_DayOfWeek___
2021-08-04 06:51:12 +02:00
name : JobType
nameWithType : JobType.JobType
fullName : TinyLife.Goals.JobType.JobType
2023-03-30 18:07:55 +02:00
nameWithType.vb : JobType.New
fullName.vb : TinyLife.Goals.JobType.New
name.vb : New
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.Construct*
commentId : Overload:TinyLife.Goals.JobType.Construct
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Construct_TinyLife_Objects_Person_System_Int32_
2021-08-04 06:51:12 +02:00
name : Construct
nameWithType : JobType.Construct
fullName : TinyLife.Goals.JobType.Construct
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Person.html
2021-08-04 06:51:12 +02:00
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- uid : TinyLife.Goals.JobType.OffWorkDays
commentId : F:TinyLife.Goals.JobType.OffWorkDays
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OffWorkDays
2021-10-14 20:30:40 +02:00
name : OffWorkDays
nameWithType : JobType.OffWorkDays
fullName : TinyLife.Goals.JobType.OffWorkDays
2023-05-26 15:16:22 +02:00
- uid : TinyLife.Goals.Job.DaysOnVacation
commentId : P:TinyLife.Goals.Job.DaysOnVacation
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_DaysOnVacation
2023-05-26 15:16:22 +02:00
name : DaysOnVacation
nameWithType : Job.DaysOnVacation
fullName : TinyLife.Goals.Job.DaysOnVacation
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.IsTimeToWork*
commentId : Overload:TinyLife.Goals.JobType.IsTimeToWork
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_IsTimeToWork_System_TimeSpan_
2021-08-04 06:51:12 +02:00
name : IsTimeToWork
nameWithType : JobType.IsTimeToWork
fullName : TinyLife.Goals.JobType.IsTimeToWork
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 : TinyLife.Goals.JobType.ToScheduleString*
commentId : Overload:TinyLife.Goals.JobType.ToScheduleString
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_ToScheduleString_System_Nullable_System_TimeSpan__
2022-07-28 14:58:38 +02:00
name : ToScheduleString
nameWithType : JobType.ToScheduleString
fullName : TinyLife.Goals.JobType.ToScheduleString
2023-05-26 15:16:22 +02:00
- uid : System.Nullable{System.TimeSpan}
commentId : T:System.Nullable{System.TimeSpan}
2021-08-04 06:51:12 +02:00
parent : System
definition : System.Nullable`1
2023-05-26 15:16:22 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
name : TimeSpan?
nameWithType : TimeSpan?
fullName : System.TimeSpan?
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-05-26 15:16:22 +02:00
- uid : System.TimeSpan
name : TimeSpan
2021-08-04 06:51:12 +02:00
isExternal : true
2023-05-26 15:16:22 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2023-03-30 18:07:55 +02:00
- name : '?'
2021-08-04 06:51:12 +02:00
spec.vb :
2023-05-26 15:16:22 +02:00
- uid : System.TimeSpan
name : TimeSpan
2021-08-04 06:51:12 +02:00
isExternal : true
2023-05-26 15:16:22 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2023-03-30 18:07:55 +02:00
- name : '?'
2021-08-04 06:51:12 +02:00
- uid : System.Nullable`1
commentId : T:System.Nullable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
name : Nullable<T>
nameWithType : Nullable<T>
fullName : System.Nullable<T>
nameWithType.vb : Nullable(Of T)
fullName.vb : System.Nullable(Of T)
name.vb : Nullable(Of T)
spec.csharp :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : T
- name : )
2023-05-26 15:16:22 +02:00
- uid : TinyLife.Goals.JobType.GetDisplayName*
commentId : Overload:TinyLife.Goals.JobType.GetDisplayName
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetDisplayName_System_Nullable_System_Int32__
2023-05-26 15:16:22 +02:00
name : GetDisplayName
nameWithType : JobType.GetDisplayName
fullName : TinyLife.Goals.JobType.GetDisplayName
- uid : System.Nullable{System.Int32}
commentId : T:System.Nullable{System.Int32}
parent : System
definition : System.Nullable`1
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int?
nameWithType : int?
fullName : int?
nameWithType.vb : Integer?
fullName.vb : Integer?
name.vb : Integer?
spec.csharp :
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '?'
spec.vb :
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '?'
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.GetRequiredPromotionSkills*
commentId : Overload:TinyLife.Goals.JobType.GetRequiredPromotionSkills
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetRequiredPromotionSkills_TinyLife_Goals_Job_
2021-08-04 06:51:12 +02:00
name : GetRequiredPromotionSkills
nameWithType : JobType.GetRequiredPromotionSkills
fullName : TinyLife.Goals.JobType.GetRequiredPromotionSkills
- uid : System.Collections.Generic.IEnumerable{System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}}
commentId : T:System.Collections.Generic.IEnumerable{System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name : IEnumerable<(SkillType Type, int Level)>
nameWithType : IEnumerable<(SkillType Type, int Level)>
fullName : System.Collections.Generic.IEnumerable<(TinyLife.Skills.SkillType Type, int Level)>
nameWithType.vb : IEnumerable(Of (Type As SkillType, Level As Integer))
fullName.vb : System.Collections.Generic.IEnumerable(Of (Type As TinyLife.Skills.SkillType, Level As Integer))
name.vb : IEnumerable(Of (Type As SkillType, Level As Integer))
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- name : (
2021-08-04 06:51:12 +02:00
- 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 : " "
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}.Type
name : Type
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.int32-.type
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : " "
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}.Level
name : Level
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.int32-.level
- name : )
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
2023-03-30 18:07:55 +02:00
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
- name : (
- uid : System.ValueTuple{TinyLife.Skills.SkillType,System.Int32}.Type
name : Type
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.int32-.type
- name : " "
- name : As
- name : " "
2021-08-04 06:51:12 +02:00
- 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.ValueTuple{TinyLife.Skills.SkillType,System.Int32}.Level
name : Level
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.skills.skilltype,system.int32-.level
- name : " "
- name : As
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
2021-08-04 06:51:12 +02:00
- name : )
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
nameWithType.vb : IEnumerable(Of T)
fullName.vb : System.Collections.Generic.IEnumerable(Of T)
name.vb : IEnumerable(Of T)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.OnWorkStartsInAnHour*
commentId : Overload:TinyLife.Goals.JobType.OnWorkStartsInAnHour
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnWorkStartsInAnHour_TinyLife_Goals_Job_
2021-10-14 20:30:40 +02:00
name : OnWorkStartsInAnHour
nameWithType : JobType.OnWorkStartsInAnHour
fullName : TinyLife.Goals.JobType.OnWorkStartsInAnHour
- uid : TinyLife.Goals.JobType.OnWorkHoursOver*
commentId : Overload:TinyLife.Goals.JobType.OnWorkHoursOver
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnWorkHoursOver_TinyLife_Goals_Job_
2021-10-14 20:30:40 +02:00
name : OnWorkHoursOver
nameWithType : JobType.OnWorkHoursOver
fullName : TinyLife.Goals.JobType.OnWorkHoursOver
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Actions.WorkAction
commentId : T:TinyLife.Actions.WorkAction
parent : TinyLife.Actions
href : TinyLife.Actions.WorkAction.html
name : WorkAction
nameWithType : WorkAction
fullName : TinyLife.Actions.WorkAction
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.JobType.OnWorkFinished*
commentId : Overload:TinyLife.Goals.JobType.OnWorkFinished
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnWorkFinished_TinyLife_Goals_Job_TinyLife_Actions_WorkAction_
2021-10-14 20:30:40 +02:00
name : OnWorkFinished
nameWithType : JobType.OnWorkFinished
fullName : TinyLife.Goals.JobType.OnWorkFinished
- uid : TinyLife.Goals.JobType.OnWorkStarted*
commentId : Overload:TinyLife.Goals.JobType.OnWorkStarted
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnWorkStarted_TinyLife_Goals_Job_TinyLife_Actions_WorkAction_
2021-10-14 20:30:40 +02:00
name : OnWorkStarted
nameWithType : JobType.OnWorkStarted
fullName : TinyLife.Goals.JobType.OnWorkStarted
- uid : TinyLife.Goals.JobType.OnLevelChanged*
commentId : Overload:TinyLife.Goals.JobType.OnLevelChanged
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnLevelChanged_TinyLife_Goals_Job_System_Int32_
2021-10-14 20:30:40 +02:00
name : OnLevelChanged
nameWithType : JobType.OnLevelChanged
fullName : TinyLife.Goals.JobType.OnLevelChanged
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Goals.Job.GetRaise
commentId : M:TinyLife.Goals.Job.GetRaise
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_GetRaise
2023-03-30 18:07:55 +02:00
name : GetRaise()
nameWithType : Job.GetRaise()
fullName : TinyLife.Goals.Job.GetRaise()
spec.csharp :
- uid : TinyLife.Goals.Job.GetRaise
name : GetRaise
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_GetRaise
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.Job.GetRaise
name : GetRaise
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_GetRaise
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Goals.JobType.OnRaiseReceived*
commentId : Overload:TinyLife.Goals.JobType.OnRaiseReceived
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_OnRaiseReceived_TinyLife_Goals_Job_
2022-09-05 14:19:42 +02:00
name : OnRaiseReceived
nameWithType : JobType.OnRaiseReceived
fullName : TinyLife.Goals.JobType.OnRaiseReceived
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Goals.StudentJobType
commentId : T:TinyLife.Goals.StudentJobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.StudentJobType.html
2022-12-20 13:25:03 +01:00
name : StudentJobType
nameWithType : StudentJobType
fullName : TinyLife.Goals.StudentJobType
- uid : TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
commentId : M:TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_UpdateWorking_TinyLife_Actions_WorkAction_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
name : UpdateWorking(WorkAction, TimeSpan, float)
nameWithType : Job.UpdateWorking(WorkAction, TimeSpan, float)
fullName : TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction, System.TimeSpan, float)
nameWithType.vb : Job.UpdateWorking(WorkAction, TimeSpan, Single)
fullName.vb : TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction, System.TimeSpan, Single)
name.vb : UpdateWorking(WorkAction, TimeSpan, Single)
spec.csharp :
- uid : TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
name : UpdateWorking
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_UpdateWorking_TinyLife_Actions_WorkAction_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.WorkAction
name : WorkAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.WorkAction.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Goals.Job.UpdateWorking(TinyLife.Actions.WorkAction,System.TimeSpan,System.Single)
name : UpdateWorking
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_UpdateWorking_TinyLife_Actions_WorkAction_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.WorkAction
name : WorkAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.WorkAction.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Goals.JobType.UpdateWorking*
commentId : Overload:TinyLife.Goals.JobType.UpdateWorking
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_UpdateWorking_TinyLife_Goals_Job_TinyLife_Actions_WorkAction_System_TimeSpan_System_Single_
2022-11-12 13:53:28 +01:00
name : UpdateWorking
nameWithType : JobType.UpdateWorking
fullName : TinyLife.Goals.JobType.UpdateWorking
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Goals.JobType.HourlyPay
commentId : F:TinyLife.Goals.JobType.HourlyPay
parent : TinyLife.Goals.JobType
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_HourlyPay
name : HourlyPay
nameWithType : JobType.HourlyPay
fullName : TinyLife.Goals.JobType.HourlyPay
- uid : TinyLife.Objects.PersonLike.Difficulty
commentId : P:TinyLife.Objects.PersonLike.Difficulty
parent : TinyLife.Objects.PersonLike
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Difficulty
name : Difficulty
nameWithType : PersonLike.Difficulty
fullName : TinyLife.Objects.PersonLike.Difficulty
- uid : TinyLife.Goals.JobType.GetDefaultHourlyPay*
commentId : Overload:TinyLife.Goals.JobType.GetDefaultHourlyPay
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_GetDefaultHourlyPay_TinyLife_Objects_Person_
name : GetDefaultHourlyPay
nameWithType : JobType.GetDefaultHourlyPay
fullName : TinyLife.Goals.JobType.GetDefaultHourlyPay
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
parent : TinyLife.Objects
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.Types
commentId : F:TinyLife.Goals.JobType.Types
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.JobType
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Types
2021-10-14 20:30:40 +02:00
name : Types
nameWithType : JobType.Types
fullName : TinyLife.Goals.JobType.Types
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Goals.JobType.Register*
commentId : Overload:TinyLife.Goals.JobType.Register
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.JobType.html#TinyLife_Goals_JobType_Register_TinyLife_Goals_JobType_
2021-08-04 06:51:12 +02:00
name : Register
nameWithType : JobType.Register
fullName : TinyLife.Goals.JobType.Register