mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-26 09:03:46 +01:00
e8bad31a17
First draft of tubelib_addons3 (still WIP)
20 lines
430 B
Lua
20 lines
430 B
Lua
--[[
|
|
|
|
sl_robot
|
|
========
|
|
|
|
Copyright (C) 2018 Joachim Stolberg
|
|
|
|
LGPLv2.1+
|
|
See LICENSE.txt for more information
|
|
|
|
]]--
|
|
|
|
sl_robot = {}
|
|
|
|
--dofile(minetest.get_modpath("sl_robot") .. "/config.lua")
|
|
dofile(minetest.get_modpath("sl_robot") .. "/robot.lua")
|
|
dofile(minetest.get_modpath("sl_robot") .. "/base.lua")
|
|
dofile(minetest.get_modpath("sl_robot") .. "/commands.lua")
|
|
dofile(minetest.get_modpath("sl_robot") .. "/run_cmnd.lua")
|