slowpoker/Assets/Scripts/Player/PlayerState.cs
2024-10-17 23:09:51 +03:00

10 lines
126 B
C#

namespace Player
{
public enum PlayerState : byte
{
Jump,
Walk,
Run,
Crouch
}
}