12 lines
241 B
Lua
12 lines
241 B
Lua
local moduleNames = {
|
|
"flipflopcomponent",
|
|
"countercomponent",
|
|
"reactorcontrollercomponent",
|
|
}
|
|
|
|
modPath = table.pack(...)[1] .. "/Lua/"
|
|
|
|
for _, moduleName in ipairs(moduleNames) do
|
|
dofile(modPath .. moduleName .. ".lua")
|
|
end
|