code/__DEFINES/__globals.dm 
GLOBAL_MANAGED | Creates a global initializer with a given InitValue expression, do not use |
---|---|
GLOBAL_UNMANAGED | Creates an empty global initializer, do not use |
GLOBAL_PROTECT | Prevents a given global from being VV'd |
GLOBAL_REAL_VAR | Standard BYOND global, seriously do not use without an earthshakingly good reason |
GLOBAL_REAL | Standard typed BYOND global, seriously do not use without an earthshakingly good reason |
GLOBAL_RAW | Defines a global var on the controller, do not use |
GLOBAL_VAR_INIT | Create an untyped global with an initializer expression |
GLOBAL_VAR_CONST | Create a global const var, do not use |
GLOBAL_LIST_INIT | Create a list global with an initializer expression |
GLOBAL_LIST_EMPTY | Create a list global that is initialized as an empty list |
GLOBAL_LIST_INIT_TYPED | Create a typed list global with an initializer expression |
GLOBAL_LIST_EMPTY_TYPED | Create a typed list global that is initialized as an empty list |
GLOBAL_DATUM_INIT | Create a typed global with an initializer expression |
GLOBAL_VAR | Create an untyped null global |
GLOBAL_LIST | Create a null global list |
GLOBAL_DATUM | Create a typed null global |
Define Details
GLOBAL_DATUM 
Create a typed null global
GLOBAL_DATUM_INIT 
Create a typed global with an initializer expression
GLOBAL_LIST 
Create a null global list
GLOBAL_LIST_EMPTY 
Create a list global that is initialized as an empty list
GLOBAL_LIST_EMPTY_TYPED 
Create a typed list global that is initialized as an empty list
GLOBAL_LIST_INIT 
Create a list global with an initializer expression
GLOBAL_LIST_INIT_TYPED 
Create a typed list global with an initializer expression
GLOBAL_MANAGED 
Creates a global initializer with a given InitValue expression, do not use
GLOBAL_PROTECT 
Prevents a given global from being VV'd
GLOBAL_RAW 
Defines a global var on the controller, do not use
GLOBAL_REAL 
Standard typed BYOND global, seriously do not use without an earthshakingly good reason
GLOBAL_REAL_VAR 
Standard BYOND global, seriously do not use without an earthshakingly good reason
GLOBAL_UNMANAGED 
Creates an empty global initializer, do not use
GLOBAL_VAR 
Create an untyped null global
GLOBAL_VAR_CONST 
Create a global const var, do not use
GLOBAL_VAR_INIT 
Create an untyped global with an initializer expression