mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-27 10:02:12 +00:00
* Moves screen objects from mob to hud (#54400) This moves screen images from icons/mob to icons/hud Makes more sense and it is easier to find * Moves screen objects from mob to hud * Update radial.dm Co-authored-by: nicbn <nicolas.nattis@gmail.com> Co-authored-by: Azarak <azarak10@gmail.com>
16 lines
384 B
Plaintext
16 lines
384 B
Plaintext
/datum/hud/constructs
|
|
ui_style = 'icons/hud/screen_construct.dmi'
|
|
|
|
/datum/hud/constructs/New(mob/owner)
|
|
..()
|
|
pull_icon = new /obj/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_icon()
|
|
pull_icon.screen_loc = ui_construct_pull
|
|
pull_icon.hud = src
|
|
static_inventory += pull_icon
|
|
|
|
healths = new /obj/screen/healths/construct()
|
|
healths.hud = src
|
|
infodisplay += healths
|