holostorage/nodes.lua

27 lines
609 B
Lua
Raw Permalink Normal View History

2018-04-08 14:11:39 +00:00
-- holostorage nodes
-- Common registrations
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/common.lua")
-- Controller
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/controller.lua")
-- Cabling
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/cable.lua")
-- Disk drives
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/disk_drive.lua")
-- Grids
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/grid.lua")
2018-04-08 12:06:49 +00:00
-- Buses
2018-04-08 14:11:39 +00:00
dofile(holostorage.modpath.."/nodes/bus.lua")
2018-04-08 12:06:49 +00:00
-- Solderer
dofile(holostorage.modpath.."/nodes/solderer.lua")
-- Start the network
2018-04-08 14:11:39 +00:00
holostorage.network.register_abm_controller("holostorage:controller_active")
holostorage.network.register_abm_nodes()