quantum-space-buddies/QSB/Animation/AnimTrigger.cs

13 lines
196 B
C#
Raw Normal View History

namespace QSB.Animation
{
public enum AnimTrigger
{
Jump = 0,
Grounded = 1,
Ungrounded = 2,
SuitUp = 3,
2020-07-27 23:14:32 +00:00
SuitDown = 4,
Crouch = 5
}
}