mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
18 lines
480 B
Plaintext
18 lines
480 B
Plaintext
/datum/hud/constructs
|
|
ui_style = 'icons/mob/screen_construct.dmi'
|
|
|
|
/datum/hud/constructs/New(mob/owner)
|
|
..()
|
|
pull_icon = new /obj/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_icon(mymob)
|
|
pull_icon.screen_loc = ui_construct_pull
|
|
static_inventory += pull_icon
|
|
|
|
healths = new /obj/screen/healths/construct()
|
|
infodisplay += healths
|
|
|
|
/mob/living/simple_animal/hostile/construct/create_mob_hud()
|
|
if(client && !hud_used)
|
|
hud_used = new /datum/hud/constructs(src)
|