Tanmaya Meher
2018-08-25 2e7859c35e55b842752c6533edae2dd19290fabc
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
56e96b 24 -- Multi-Machine Recipes
T 25 dofile(path.."/grindings.lua")
26
d55ecc 27 -- Machines
N 28 dofile(path.."/alloy_furnace.lua")
29 dofile(path.."/electric_furnace.lua")
30 dofile(path.."/grinder.lua")
31 dofile(path.."/extractor.lua")
32 dofile(path.."/compressor.lua")
dd65a6 33 dofile(path.."/centrifuge.lua")