techpack/smartline/init.lua

24 lines
811 B
Lua
Raw Normal View History

2018-03-10 22:14:57 +01:00
--[[
SmartLine
=========
Copyright (C) 2018 Joachim Stolberg
LGPLv2.1+
See LICENSE.txt for more information
]]--
if minetest.get_modpath("display_lib") and display_lib ~= nil and
minetest.get_modpath("font_lib") and font_lib ~= nil then
2018-03-24 18:32:28 +01:00
dofile(minetest.get_modpath("smartline") .. "/display.lua")
2018-03-10 22:14:57 +01:00
end
dofile(minetest.get_modpath("smartline") .. "/button.lua")
dofile(minetest.get_modpath("smartline") .. "/signaltower.lua")
2018-03-24 18:32:28 +01:00
dofile(minetest.get_modpath("smartline") .. "/playerdetector.lua")
2018-03-10 22:14:57 +01:00
dofile(minetest.get_modpath("smartline") .. "/sequencer.lua")
dofile(minetest.get_modpath("smartline") .. "/timer.lua")
dofile(minetest.get_modpath("smartline") .. "/repeater.lua")
dofile(minetest.get_modpath("smartline") .. "/controller.lua")
dofile(minetest.get_modpath("smartline") .. "/commands.lua")