mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-15 20:52:07 +00:00
10 lines
473 B
Plaintext
10 lines
473 B
Plaintext
|
|
/// Used in ai/manage_processing to indicate that the AI should be dequeued from slow and fast AI processing
|
|
#define AI_NO_PROCESS 0
|
|
|
|
/// Used in ai/manage_processing to indicate that the AI should be queued for slow AI processing, and for related subsystem checks
|
|
#define AI_PROCESSING (1 << 0)
|
|
|
|
/// Used in ai/manage_processing to indicate that the AI should be queued for fast AI processing, and for related subsystem checks
|
|
#define AI_FASTPROCESSING (1 << 1)
|