mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-08 16:32:54 +00:00
14 lines
331 B
Plaintext
14 lines
331 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 /atom/movable/screen/movable/mapper_holder(null, owner))
|
|
..()
|
|
|
|
/datum/mini_hud/mapper/Destroy()
|
|
owner?.hud_item = null
|
|
owner?.hud_datum = null
|
|
return ..()
|