Extract power API functions to separate file

This commit is contained in:
2024-09-08 22:27:36 +02:00
parent 2a607bedfe
commit 9436c7033b
4 changed files with 218 additions and 171 deletions

View File

@@ -29,9 +29,12 @@ industrialtest.random=PseudoRandom(os.time())
-- load other lua files
dofile(modpath.."/compatibility.lua")
dofile(modpath.."/api.lua")
dofile(modpath.."/minerals.lua")
dofile(modpath.."/api/common.lua")
dofile(modpath.."/api/power.lua")
dofile(modpath.."/api.lua")
dofile(modpath.."/machines/common.lua")
dofile(modpath.."/machines/canning_machine.lua")
dofile(modpath.."/machines/chargepad.lua")