FlipFlop, Counter, Reactor Controller Components

This commit is contained in:
2022-06-29 23:29:20 +01:00
parent e6ac9a8431
commit 8dd238ea38
11 changed files with 887 additions and 89 deletions

11
Lua/Autorun/autorun.lua Normal file
View File

@@ -0,0 +1,11 @@
local moduleNames = {
"flipflopcomponent",
"countercomponent",
"reactorcontrollercomponent",
}
modPath = table.pack(...)[1] .. "/Lua/"
for _, moduleName in ipairs(moduleNames) do
dofile(modPath .. moduleName .. ".lua")
end