mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-05-23 07:06:44 +01:00
c305b389f7
It's happening. Kind of, the code is there.
12 lines
343 B
Plaintext
12 lines
343 B
Plaintext
/datum/controller/process/nanoui
|
|
var/tmp/datum/updateQueue/updateQueueInstance
|
|
|
|
/datum/controller/process/nanoui/setup()
|
|
name = "nanoui"
|
|
schedule_interval = 10 // every 1 second
|
|
updateQueueInstance = new
|
|
|
|
/datum/controller/process/nanoui/doWork()
|
|
updateQueueInstance.init(nanomanager.processing_uis, "process")
|
|
updateQueueInstance.Run()
|