aboutsummaryrefslogtreecommitdiff
path: root/font_api/init.lua
diff options
context:
space:
mode:
authorPierre-Yves Rollo <dev@pyrollo.com>2019-12-31 17:06:15 +0100
committerPierre-Yves Rollo <dev@pyrollo.com>2019-12-31 17:06:15 +0100
commit135cae721906d312cd0084f7343a15760e3aa722 (patch)
tree2e17a8b49e86c5b99e9ff8681879f28860437d74 /font_api/init.lua
parentde915427ee9e4e741dc5079a57b8d129e2b7e916 (diff)
downloaddisplay_modpack_no_craft-135cae721906d312cd0084f7343a15760e3aa722.tar.gz
display_modpack_no_craft-135cae721906d312cd0084f7343a15760e3aa722.zip
Removed display_api, signs_api, and font_api to make them subtrees
Diffstat (limited to 'font_api/init.lua')
-rw-r--r--font_api/init.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/font_api/init.lua b/font_api/init.lua
deleted file mode 100644
index c5858f4..0000000
--- a/font_api/init.lua
+++ /dev/null
@@ -1,35 +0,0 @@
---[[
- font_api mod for Minetest - Library creating textures with fonts and text
- (c) Pierre-Yves Rollo
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
---]]
-
--- Global variables
--------------------
-
-font_api = {}
-font_api.name = minetest.get_current_modname()
-font_api.path = minetest.get_modpath(font_api.name)
-
--- Inclusions
--------------
-
-dofile(font_api.path.."/font.lua")
-dofile(font_api.path.."/registry.lua")
-dofile(font_api.path.."/fontform.lua")
-if minetest.get_modpath("display_api") then
- dofile(font_api.path.."/display_api.lua")
-end
-dofile(font_api.path.."/deprecation.lua")