mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
19 lines
455 B
Plaintext
19 lines
455 B
Plaintext
/obj/screen/horror_chemicals
|
|
name = "chemicals"
|
|
icon_state = "horror_counter"
|
|
screen_loc = ui_lingchemdisplay
|
|
|
|
/datum/hud/chemical_counter
|
|
ui_style = 'icons/mob/screen_midnight.dmi'
|
|
var/obj/screen/horror_chemicals/chemical_counter
|
|
|
|
/datum/hud/chemical_counter/New(mob/owner)
|
|
. = ..()
|
|
chemical_counter = new /obj/screen/horror_chemicals
|
|
infodisplay += chemical_counter
|
|
|
|
/datum/hud/chemical_counter/Destroy()
|
|
. = ..()
|
|
QDEL_NULL(chemical_counter)
|
|
|