2018-06-24 15:01:33 +02:00
|
|
|
--[[
|
|
|
|
|
|
|
|
sl_controller
|
|
|
|
=============
|
|
|
|
|
|
|
|
Copyright (C) 2018 Joachim Stolberg
|
|
|
|
|
|
|
|
LGPLv2.1+
|
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
2018-06-24 22:33:00 +02:00
|
|
|
sl_controller = {}
|
|
|
|
|
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/config.lua")
|
2018-06-24 15:01:33 +02:00
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/controller.lua")
|
2018-06-24 22:33:00 +02:00
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/commands.lua")
|
2018-06-26 23:04:25 +02:00
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/battery.lua")
|
|
|
|
dofile(minetest.get_modpath("sl_controller") .. "/server.lua")
|