mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-14 11:42:27 +00:00
* 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>
21 lines
518 B
Plaintext
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,
|
|
))
|