2021-03-02 09:24:37 +01:00
|
|
|
computers = {}
|
2022-02-12 22:36:11 +01:00
|
|
|
computers.modpath = minetest.get_modpath("computers")
|
2021-03-02 09:24:37 +01:00
|
|
|
|
2022-02-13 03:56:17 +01:00
|
|
|
computers.os = {
|
|
|
|
version = 0.3,
|
|
|
|
name = "kuto",
|
|
|
|
authors = {"wsor", "luk3yx"},
|
|
|
|
license = "MIT",
|
|
|
|
}
|
|
|
|
|
2022-02-12 22:36:11 +01:00
|
|
|
dofile(computers.modpath .. "/old_stuff/init.lua")
|
2022-02-13 03:56:17 +01:00
|
|
|
|
2022-02-12 23:13:16 +01:00
|
|
|
dofile(computers.modpath .. "/formspec.lua")
|
2022-02-13 03:56:17 +01:00
|
|
|
dofile(computers.modpath .. "/commands.lua")
|
2022-02-13 02:52:12 +01:00
|
|
|
dofile(computers.modpath .. "/gui.lua")
|
2022-02-12 22:36:11 +01:00
|
|
|
dofile(computers.modpath .. "/demo.lua")
|