mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
13 lines
344 B
Plaintext
13 lines
344 B
Plaintext
//config files
|
|
#define CONFIG_GET(X) global.config.Get(/datum/config_entry/##X)
|
|
#define CONFIG_SET(X, Y) global.config.Set(/datum/config_entry/##X, ##Y)
|
|
#define CONFIG_LOADED global.config.load_complete
|
|
|
|
#define CONFIG_MAPS_FILE "maps.txt"
|
|
|
|
//flags
|
|
/// can't edit
|
|
#define CONFIG_ENTRY_LOCKED 1
|
|
/// can't see value
|
|
#define CONFIG_ENTRY_HIDDEN 2
|