12 lines
176 B
C#
Raw Normal View History

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