added new models
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
public enum StatsId { Money, RentAccount, Food, Energy, BankAccount, Job, }
|
||||
public enum Tasks { Move, Interact, Rotate };
|
||||
public enum TaskStatus { Waiting, InProgress, Complete };
|
||||
public enum AnimationStates
|
||||
{
|
||||
[EnumMember(Value = "Idle")]
|
||||
Idle,
|
||||
[EnumMember(Value = "Move")]
|
||||
Walking,
|
||||
[EnumMember(Value = "Sleeping")]
|
||||
Sleeping,
|
||||
[EnumMember(Value = "StandToSit")]
|
||||
[BlockingAnimation]
|
||||
Sitting,
|
||||
[EnumMember(Value = "SitToStand")]
|
||||
[BlockingAnimation]
|
||||
Standing
|
||||
};
|
||||
Reference in New Issue
Block a user