mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
10 lines
100 B
C#
10 lines
100 B
C#
|
namespace Fie.Object
|
||
|
{
|
||
|
public enum FieObjectGroundState
|
||
|
{
|
||
|
None = -1,
|
||
|
Grounding,
|
||
|
Flying
|
||
|
}
|
||
|
}
|