mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
Several months worth of updates. --------- Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com> Co-authored-by: Pepsilawn <reisenrui@gmail.com> Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com> Co-authored-by: Cure221 <106662180+Cure221@users.noreply.github.com>
15 lines
480 B
Plaintext
15 lines
480 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"
|
|
#define AIRLOCK_LIGHT_RETA "reta"
|
|
|
|
// Airlock physical states
|
|
#define AIRLOCK_CLOSED "closed"
|
|
#define AIRLOCK_CLOSING "closing"
|
|
#define AIRLOCK_OPEN "open"
|
|
#define AIRLOCK_OPENING "opening"
|
|
#define AIRLOCK_DENY "deny"
|