mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-19 14:41:50 +00:00
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.
26 lines
639 B
Plaintext
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()
|