11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
-- @include ./base.txt
|
|
require('./base.txt')
|
|
|
|
CVT = class('CVT')
|
|
|
|
function CVT:initialize(options)
|
|
options = options or {}
|
|
|
|
self.base = Gearbox:new(options)
|
|
end
|