43 lines
706 B
Plaintext
43 lines
706 B
Plaintext
-- @name Koptilnya Engine
|
|
-- @author Koptilnya1337
|
|
-- @shared
|
|
--
|
|
-- @include ./engine.txt
|
|
--
|
|
-- @include ./gearboxes/manual.txt
|
|
-- @include ./gearboxes/cvt.txt
|
|
-- @include ./gearboxes/auto.txt
|
|
--
|
|
-- @include ./differential.txt
|
|
--
|
|
-- @include ./configs/audi_tt.txt
|
|
require("./engine.txt")
|
|
--
|
|
require("./gearboxes/manual.txt")
|
|
require("./gearboxes/cvt.txt")
|
|
require("./gearboxes/auto.txt")
|
|
--
|
|
require("./differential.txt")
|
|
--
|
|
require("./configs/audi_tt.txt")
|
|
|
|
if SERVER then
|
|
function adjustPorts()
|
|
wire.adjustPorts({
|
|
Input = "table"
|
|
}, {
|
|
RPM = "number"
|
|
})
|
|
end
|
|
|
|
function setupHooks()
|
|
|
|
end
|
|
|
|
adjustPorts()
|
|
-- printTable(config)
|
|
else
|
|
|
|
end
|
|
|