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-28 01:14:32 +02:00
SuitDown = 4,
Crouch = 5
}
}