Files
Bubberstation/code/_globalvars/lists/wiremod.dm
SkyratBot 2c72ba11b8 [MIRROR] Spans out and Alphabetizes the Lists in _globalvars/lists [MDB IGNORE] (#10752)
* Spans out and Alphabetizes the Lists in _globalvars/lists

* Spans out and Alphabetizes the Lists in _globalvars/lists

Co-authored-by: san7890 <34697715+san7890@users.noreply.github.com>
Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
2022-01-19 21:12:52 +00:00

21 lines
518 B
Plaintext

/// The basic player-facing types that don't have any super special behaviour.
GLOBAL_LIST_INIT(wiremod_basic_types, list(
PORT_TYPE_ANY,
PORT_TYPE_ATOM,
PORT_TYPE_NUMBER,
PORT_TYPE_SIGNAL,
PORT_TYPE_STRING,
PORT_TYPE_TABLE,
))
/// The fundamental datatypes of the byond game engine.
GLOBAL_LIST_INIT(wiremod_fundamental_types, list(
PORT_TYPE_ANY,
PORT_TYPE_ASSOC_LIST(PORT_TYPE_ANY, PORT_TYPE_ANY),
PORT_TYPE_ATOM,
PORT_TYPE_DATUM,
PORT_TYPE_LIST(PORT_TYPE_ANY),
PORT_TYPE_NUMBER,
PORT_TYPE_STRING,
))