mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-07-15 01:55:29 +01:00
c7b6c3e42b
This reverts commit f6d0f62622.
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)
|
|
. = ..()
|