slowpoker/Assets/Scripts/Player/PlayerState.cs

11 lines
140 B
C#
Raw Normal View History

2024-10-17 17:23:05 +03:00
namespace Player
{
public enum PlayerState : byte
{
Idle,
Jump,
Walk,
Run,
Crouch
}
}