mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-22 23:33:44 +01:00
20 lines
538 B
Lua
20 lines
538 B
Lua
--[[
|
|
|
|
sl_controller
|
|
=============
|
|
|
|
Copyright (C) 2018 Joachim Stolberg
|
|
|
|
LGPLv2.1+
|
|
See LICENSE.txt for more information
|
|
|
|
]]--
|
|
|
|
sl_controller = {}
|
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/config.lua")
|
|
dofile(minetest.get_modpath("sl_controller") .. "/controller.lua")
|
|
dofile(minetest.get_modpath("sl_controller") .. "/commands.lua")
|
|
dofile(minetest.get_modpath("sl_controller") .. "/battery.lua")
|
|
dofile(minetest.get_modpath("sl_controller") .. "/server.lua")
|
|
dofile(minetest.get_modpath("sl_controller") .. "/terminal.lua") |