mirror of
https://github.com/mt-mods/home_workshop_modpack.git
synced 2024-11-17 16:08:20 +01:00
17 lines
406 B
Lua
17 lines
406 B
Lua
computers = {}
|
|
computers.modpath = minetest.get_modpath("computers")
|
|
|
|
computers.os = {
|
|
version = 0.3,
|
|
name = "kuto",
|
|
authors = {"wsor", "luk3yx"},
|
|
license = "MIT",
|
|
}
|
|
|
|
dofile(computers.modpath .. "/old_stuff/init.lua")
|
|
|
|
dofile(computers.modpath .. "/formspec.lua")
|
|
dofile(computers.modpath .. "/commands.lua")
|
|
dofile(computers.modpath .. "/gui.lua")
|
|
dofile(computers.modpath .. "/demo.lua")
|