mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-27 17:41:50 +00:00
Co-authored-by: Unit0016 <50649185+unit0016@users.noreply.github.com> Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: Jeremiah <42397676+jlsnow301@users.noreply.github.com> Co-authored-by: Kylerace <kylerlumpkin1@gmail.com>
15 lines
436 B
Plaintext
15 lines
436 B
Plaintext
// Airlock light states, used for generating the light overlays
|
|
#define AIRLOCK_LIGHT_BOLTS "bolts"
|
|
#define AIRLOCK_LIGHT_EMERGENCY "emergency"
|
|
#define AIRLOCK_LIGHT_DENIED "denied"
|
|
#define AIRLOCK_LIGHT_CLOSING "closing"
|
|
#define AIRLOCK_LIGHT_OPENING "opening"
|
|
|
|
// Airlock physical states
|
|
#define AIRLOCK_CLOSED 1
|
|
#define AIRLOCK_CLOSING 2
|
|
#define AIRLOCK_OPEN 3
|
|
#define AIRLOCK_OPENING 4
|
|
#define AIRLOCK_DENY 5
|
|
#define AIRLOCK_EMAG 6
|