mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
18 lines
373 B
Plaintext
18 lines
373 B
Plaintext
/datum/hud/living
|
|
ui_style = 'icons/mob/screen_gen.dmi'
|
|
|
|
/datum/hud/living/New(mob/living/owner)
|
|
..()
|
|
|
|
pull_icon = new /obj/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_icon()
|
|
pull_icon.screen_loc = ui_living_pull
|
|
pull_icon.hud = src
|
|
static_inventory += pull_icon
|
|
|
|
healths = new /obj/screen/healths/living()
|
|
healths.hud = src
|
|
infodisplay += healths
|
|
|