2021-03-28 18:30:08 +05:00

14 lines
180 B
Plaintext

Gearbox = class("Gearbox")
function Gearbox:initialize()
self.config = {}
end
function Gearbox:update()
end
function Gearbox:setConfig(config)
self.config = config
end