Files
Bubberstation/code/_globalvars/lists/wiremod.dm
san7890 da5278e4ad Spans out and Alphabetizes the Lists in _globalvars/lists (#64018)
On the tin. Every list with two or more variables gets spanned out and alphabetized. Anything that sorta followed this was alphabetized or made to make sense. I didn't alphabetize the directions though, because North/South/East/West makes sense in it's own way.
2022-01-16 15:08:37 -08: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,
))