mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 14:17:59 +01:00
11 lines
108 B
C#
11 lines
108 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum CharacterState
|
|
{
|
|
Idle,
|
|
Walking,
|
|
Trotting,
|
|
Running,
|
|
Jumping
|
|
}
|