14 lines
180 B
Plaintext
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
|