Goon process scheduler

This commit is contained in:
ZomgPonies
2015-02-22 15:24:46 -05:00
parent 1f5ef8d4dd
commit 2c50a42ba7
51 changed files with 2246 additions and 24 deletions
+14
View File
@@ -0,0 +1,14 @@
/datum/controller/process/event
var/tmp/datum/updateQueue/updateQueueInstance
/datum/controller/process/event/setup()
name = "event"
schedule_interval = 20 // every 2 seconds
updateQueueInstance = new
/datum/controller/process/event/doWork()
updateQueueInstance.init(event_manager, "process")
updateQueueInstance.Run()
/datum/controller/process/event/onFinish()
checkEvent()