11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
-- @include ../gearboxes/manual.txt
|
|
require('../gearboxes/manual.txt')
|
|
-- require('../gearboxes/auto.txt')
|
|
-- require('../gearboxes/cvt.txt')
|
|
|
|
GearboxFactory = class('GearboxFactory')
|
|
|
|
function GearboxFactory.create(...)
|
|
return ManualGearbox:new(...)
|
|
end
|