Implemented engine

This commit is contained in:
Ivan Grachyov
2021-11-09 22:32:12 +05:00
parent e2c1c4bc88
commit 8a426a1d5c
7 changed files with 182 additions and 46 deletions

View File

@@ -1,4 +1,10 @@
-- @include ./base.txt
require("./base.txt")
CVT = class("CVT")
CVT = class("CVT")
function CVT:initialize(options)
options = options or {}
self.base = Gearbox:new(options)
end