mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 00:48:00 +01:00
10 lines
91 B
C#
10 lines
91 B
C#
|
namespace Fie.Object
|
||
|
{
|
||
|
public enum FieObjectBaseState
|
||
|
{
|
||
|
None = -1,
|
||
|
Idle,
|
||
|
Move
|
||
|
}
|
||
|
}
|