restructure format

This commit is contained in:
unknown 2022-02-20 22:53:29 -05:00
parent ee4cbef811
commit 0dbc57cbbe
7 changed files with 8 additions and 6 deletions

7
computers/core/init.lua Normal file
View File

@ -0,0 +1,7 @@
local path = computers.modpath .. "/core"
dofile(path .. "/api.lua")
dofile(path .. "/networks.lua")
dofile(path .. "/formspec.lua")
dofile(path .. "/commands.lua")
dofile(path .. "/gui.lua")

View File

@ -14,12 +14,7 @@ computers.os = {
license = "MIT",
}
dofile(computers.modpath .. "/api.lua")
dofile(computers.modpath .. "/networks.lua")
dofile(computers.modpath .. "/formspec.lua")
dofile(computers.modpath .. "/commands.lua")
dofile(computers.modpath .. "/gui.lua")
dofile(computers.modpath .. "/core/init.lua")
dofile(computers.modpath .. "/nodes/init.lua")
dofile(computers.modpath .. "/demo.lua")