2020-11-15 20:25:38 +01:00
|
|
|
--[[
|
|
|
|
|
|
|
|
sl_controller
|
|
|
|
=============
|
|
|
|
|
2020-11-20 19:20:28 +01:00
|
|
|
Copyright (C) 2017-2020 Joachim Stolberg
|
2020-11-15 20:25:38 +01:00
|
|
|
|
2020-11-20 19:20:28 +01:00
|
|
|
AGPL v3
|
2020-11-15 20:25:38 +01:00
|
|
|
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")
|
2020-11-20 19:20:28 +01:00
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/terminal.lua")
|