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