slowpoker/Assets/Scripts/Player/PlayerState.cs

10 lines
124 B
C#
Raw Normal View History

2024-10-17 17:23:05 +03:00
namespace Player
{
public enum PlayerState : byte
{
Jump,
Walk,
Run,
2024-10-18 23:36:46 +03:00
Menu
2024-10-17 17:23:05 +03:00
}
}