mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
12 lines
176 B
C#
12 lines
176 B
C#
|
namespace QSB.Animation
|
|||
|
{
|
|||
|
public enum AnimTrigger
|
|||
|
{
|
|||
|
Jump = 0,
|
|||
|
Grounded = 1,
|
|||
|
Ungrounded = 2,
|
|||
|
SuitUp = 3,
|
|||
|
SuitDown = 4
|
|||
|
}
|
|||
|
}
|