mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Co-authored-by: Selis <selis@xynolabs.com> Co-authored-by: Selis <sirlionfur@hotmail.de> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: SatinIsle <thesatinisle@gmail.com> Co-authored-by: Heroman <alesha3000@list.ru> Co-authored-by: Casey <a.roaming.shadow@gmail.com> Co-authored-by: Raeschen <rycoop29@gmail.com>
17 lines
400 B
Plaintext
17 lines
400 B
Plaintext
// Observer Pattern Implementation: Destroyed
|
|
// Registration type: /datum
|
|
//
|
|
// Raised when: A /datum instance is destroyed.
|
|
//
|
|
// Arguments that the called proc should expect:
|
|
// /datum/destroyed_instance: The instance that was destroyed.
|
|
/*
|
|
/decl/observ/destroyed
|
|
name = "Destroyed"
|
|
*/
|
|
//Deprecated in favor of Comsigs
|
|
|
|
/datum/Destroy()
|
|
SEND_SIGNAL(src,COMSIG_OBSERVER_DESTROYED)
|
|
. = ..()
|