mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2025-12-11 13:21:12 +00:00
16 lines
340 B
Plaintext
16 lines
340 B
Plaintext
/datum/map_template/shuttle
|
|
abstract_type = /datum/map_template/shuttle
|
|
var/prefix = null
|
|
var/suffix = null
|
|
|
|
/datum/map_template/shuttle/New()
|
|
// if(!name && id)
|
|
// name = id
|
|
|
|
if(isnull(mappath))
|
|
mappath = prefix + suffix
|
|
..(path = mappath)
|
|
|
|
/datum/map_template/shuttle/overmap
|
|
abstract_type = /datum/map_template/shuttle/overmap
|