mirror of
https://github.com/joe7575/techpack.git
synced 2025-02-17 02:12:25 +01:00
19 lines
370 B
Lua
19 lines
370 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")
|