Files
Aurora.3/code/controllers/controller.dm
Lohikar 1423250412 Update DMM Suite (#2711)
Updates the DMM Suite from /tg/ upstream, adding the ability to load tgm format maps, tick-checks, and better compatibility with SSatoms / Initialize().

Also adds some framework for random ruin generation, though it is not functional yet.
2017-06-15 12:41:45 +03:00

26 lines
639 B
Plaintext

/datum/controller
var/name
// The object used for the clickable stat() button.
var/obj/effect/statclick/statclick
/datum/controller/proc/Initialize()
//cleanup actions
/datum/controller/proc/Shutdown()
/datum/controller/proc/Recover()
/datum/controller/proc/stat_entry()
// Called when SSexplosives begins processing explosions.
/datum/controller/proc/ExplosionStart()
// Called when SSexplosives finishes processing all queued explosions.
/datum/controller/proc/ExplosionEnd()
//when we enter dmm_suite.load_map
/datum/controller/proc/StartLoadingMap()
//when we exit dmm_suite.load_map
/datum/controller/proc/StopLoadingMap()