mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
797f4de50d
* syncing animation triggers * suit sync
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
|
|
}
|
|
}
|