17 lines
254 B
Lua
17 lines
254 B
Lua
--[[
|
|
|
|
Airshuttle
|
|
==========
|
|
|
|
Copyright (C) 2018 Joachim Stolberg
|
|
|
|
See LICENSE.txt for more information
|
|
|
|
]]--
|
|
|
|
airshuttle = {}
|
|
|
|
local MP = minetest.get_modpath("airshuttle")
|
|
dofile(MP.."/entity.lua")
|
|
dofile(MP.."/remote.lua")
|
|
dofile(MP.."/route.lua") |