mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 23:53:47 +01:00
e32544e599
* CI * undef * hooooly crap * yeah * false by default * fixes * alright, there we go * oops lmao * lol, lmao even * proper programming * fix * losin my mind * oops * yeah coloring * WE LOVE MULTIPLE DEFINES (ive lost my sanity)
15 lines
364 B
Plaintext
15 lines
364 B
Plaintext
// Screen indexes
|
|
/// Headlines screen index.
|
|
#define NEWSCASTER_HEADLINES 0
|
|
/// Available Jobs screen index.
|
|
#define NEWSCASTER_JOBS 1
|
|
/// View Channel screen index.
|
|
#define NEWSCASTER_CHANNEL 2
|
|
|
|
// Censor flags
|
|
/// Censor author name.
|
|
#define NEWSCASTER_CENSOR_AUTHOR (1 << 0)
|
|
/// Censor story title, body and image.
|
|
#define NEWSCASTER_CENSOR_STORY (1 << 1)
|
|
|