quantum-space-buddies/QSB/Animation/AnimTrigger.cs
2020-07-28 01:14:32 +02:00

13 lines
196 B
C#

namespace QSB.Animation
{
public enum AnimTrigger
{
Jump = 0,
Grounded = 1,
Ungrounded = 2,
SuitUp = 3,
SuitDown = 4,
Crouch = 5
}
}