mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-16 21:22:40 +00:00
* Adds preference to control multilingual behaviour Examine mode preference should persist across reconnections to a single round Still looking into how to properly get these to go into the savefile * typos
15 lines
424 B
Plaintext
15 lines
424 B
Plaintext
// Modes for examine text output
|
|
#define EXAMINE_MODE_DEFAULT 0
|
|
#define EXAMINE_MODE_INCLUDE_USAGE 1
|
|
#define EXAMINE_MODE_SWITCH_TO_PANEL 2
|
|
|
|
// Should be one higher than the above
|
|
#define EXAMINE_MODE_MAX 3
|
|
|
|
// Modes for parsing multilingual speech
|
|
#define MULTILINGUAL_DEFAULT 0
|
|
#define MULTILINGUAL_SPACE 1
|
|
#define MULTILINGUAL_DOUBLE_DELIMITER 2
|
|
#define MULTILINGUAL_OFF 3
|
|
|
|
#define MULTILINGUAL_MODE_MAX 4 |