mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-07-11 15:12:22 +01:00
14 lines
277 B
Plaintext
14 lines
277 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_DBG(1 DECI SECOND)
|
|
ticker.pregame()
|
|
doWork()
|
|
ticker.process() |