mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-01 20:42:08 +00:00
* /obj/screen --> /atom/movable/screen * Update storage.dm * Update radial.dm * a Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com> Co-authored-by: Azarak <azarak10@gmail.com>
16 lines
402 B
Plaintext
16 lines
402 B
Plaintext
/datum/hud/constructs
|
|
ui_style = 'icons/hud/screen_construct.dmi'
|
|
|
|
/datum/hud/constructs/New(mob/owner)
|
|
..()
|
|
pull_icon = new /atom/movable/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 /atom/movable/screen/healths/construct()
|
|
healths.hud = src
|
|
infodisplay += healths
|