Files
S.P.L.U.R.T-Station-13/code/modules/wiremod/preset/hello_world.dm
2021-10-28 12:51:31 +08:00

15 lines
355 B
Plaintext

/**
* # Hello World preset
*
* Says "Hello World" when triggered. Needs to be wired up and connected first.
*/
/obj/item/integrated_circuit/loaded/hello_world
/obj/item/integrated_circuit/loaded/hello_world/Initialize()
. = ..()
var/obj/item/circuit_component/speech/speech = new()
add_component(speech)
speech.message.set_input("Hello World")