Files
Bubberstation/code/ATMOSPHERICS/components/unary_devices/generator_input.dm
duncathan 99234185de first pass of cleanup
makes simple pipes more OOP
adjusts defines; puts them in __DEFINES/atmospherics.dm
adds DEVICE_TYPE_LOOP define, which is used in a bunch of the for loops
2015-08-16 23:10:57 -06:00

21 lines
422 B
Plaintext

/obj/machinery/atmospherics/components/unary/generator_input
icon_state = "he_intact"
density = 1
name = "generator input"
desc = "Placeholder"
var/update_cycle
/obj/machinery/atmospherics/components/unary/generator_input/update_icon()
if(NODE1)
icon_state = "intact"
else
icon_state = "exposed"
return
/obj/machinery/atmospherics/components/unary/generator_input/proc/return_exchange_air()
return AIR1