mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-18 14:12:20 +00:00
7 lines
260 B
Plaintext
7 lines
260 B
Plaintext
// Defines used for movement state evaluation.
|
|
#define MOVEMENT_INTENT_WALKING 1
|
|
#define MOVEMENT_INTENT_RUNNING 2
|
|
|
|
#define IS_WALKING(X) (X?.move_intent?.flags & MOVEMENT_INTENT_WALKING)
|
|
#define IS_RUNNING(X) (X?.move_intent?.flags & MOVEMENT_INTENT_RUNNING)
|