mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
* space cleanup * this * this too --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
// Specific types
|
|
/datum/mini_hud/mapper
|
|
var/obj/item/mapping_unit/owner
|
|
|
|
/datum/mini_hud/mapper/New(var/datum/hud/other, owner)
|
|
src.owner = owner
|
|
screenobjs = list(new /obj/screen/movable/mapper_holder(null, owner))
|
|
..()
|
|
|
|
/datum/mini_hud/mapper/Destroy()
|
|
owner?.hud_item = null
|
|
owner?.hud_datum = null
|
|
return ..()
|