mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-03-28 04:12:39 +00:00
14 lines
274 B
Plaintext
14 lines
274 B
Plaintext
// handles the game ticker
|
|
datum/controller/process/ticker
|
|
setup()
|
|
name = "Game"
|
|
schedule_interval = 5
|
|
|
|
if(!ticker)
|
|
ticker = new /datum/controller/gameticker()
|
|
|
|
// start the pregame process
|
|
spawn(1)
|
|
ticker.pregame()
|
|
doWork()
|
|
ticker.process() |