mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 03:40:46 +00:00
13 lines
196 B
C#
13 lines
196 B
C#
namespace QSB.Animation
|
|
{
|
|
public enum AnimTrigger
|
|
{
|
|
Jump = 0,
|
|
Grounded = 1,
|
|
Ungrounded = 2,
|
|
SuitUp = 3,
|
|
SuitDown = 4,
|
|
Crouch = 5
|
|
}
|
|
}
|