mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
* tgu * utter bullshit * fixes more bugs * a * barsign bullshit * Update barsigns.dm * bitrunner update * infiltrator bullshit * ports 2 gamebreaking bug fixes * mentorwho is now in a block * Sec mech bay for fulp maps * merge conflict * oh man im pushing this to map depot --------- Co-authored-by: SgtHunk <68669754+SgtHunk@users.noreply.github.com>
14 lines
466 B
Plaintext
14 lines
466 B
Plaintext
GLOBAL_VAR_INIT(icon_holographic_wall, init_holographic_wall())
|
|
GLOBAL_VAR_INIT(icon_holographic_window, init_holographic_window())
|
|
|
|
/proc/init_holographic_wall()
|
|
return icon('icons/turf/walls/wall.dmi', "wall-0")
|
|
|
|
/proc/init_holographic_window()
|
|
var/icon/grille_icon = icon('icons/obj/structures.dmi', "grille")
|
|
var/icon/window_icon = icon('icons/obj/smooth_structures/window.dmi', "window-0")
|
|
|
|
grille_icon.Blend(window_icon, ICON_OVERLAY)
|
|
|
|
return grille_icon
|