Remove obsolete processing queue class

This commit is contained in:
Zenon Seth 2023-11-19 22:36:45 +00:00
parent 67d6b8acaa
commit f49a670854
2 changed files with 0 additions and 17 deletions

View File

@ -1,6 +1,5 @@
local path = logistica.MODPATH .. "/logic"
-- once again, order is important
dofile(path.."/processing_queue.lua")
dofile(path.."/groups.lua")
dofile(path.."/network_cache.lua")
dofile(path.."/network_logic.lua")

View File

@ -1,16 +0,0 @@
local ProQ = {}
ProQ.__index = ProQ
function ProQ.new()
local self = setmetatable({}, ProQ)
self.queue = {}
return self
end
function ProQ:add_pos(newval)
self.value = newval
end
function ProQ:get_value()
return self.value
end