mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-07-11 15:12:22 +01:00
12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
// handles telescope signals and whatnot
|
|
datum/controller/process/telescope
|
|
var/datum/telescope_manager/manager
|
|
|
|
setup()
|
|
name = "Telescope"
|
|
schedule_interval = 100
|
|
|
|
doWork()
|
|
if(tele_man)
|
|
if(!manager) manager = tele_man
|
|
tele_man.tick() |