Zefram
2014-07-15 dd65a68ce9f494717faffc98c45814f9a9d67fa4
commit | author | age
ee0765 1 local path = technic.modpath.."/machines/register"
S 2
3 dofile(path.."/common.lua")
d55ecc 4
N 5 -- Wiring stuff
6 dofile(path.."/cables.lua")
7 dofile(path.."/battery_box.lua")
8
9 -- Generators
ee0765 10 dofile(path.."/solar_array.lua")
704925 11 dofile(path.."/generator.lua")
ee0765 12
d55ecc 13 -- API for machines
N 14 dofile(path.."/recipes.lua")
15 dofile(path.."/machine_base.lua")
16
17 -- Recipes
18 dofile(path.."/alloy_recipes.lua")
19 dofile(path.."/grinder_recipes.lua")
20 dofile(path.."/extractor_recipes.lua")
21 dofile(path.."/compressor_recipes.lua")
dd65a6 22 dofile(path.."/centrifuge_recipes.lua")
d55ecc 23
N 24 -- Machines
25 dofile(path.."/alloy_furnace.lua")
26 dofile(path.."/electric_furnace.lua")
27 dofile(path.."/grinder.lua")
28 dofile(path.."/extractor.lua")
29 dofile(path.."/compressor.lua")
dd65a6 30 dofile(path.."/centrifuge.lua")