signs_lib/init.lua

16 lines
564 B
Lua
Raw Normal View History

-- This mod provides the visible text on signs library used by Home Decor
-- and perhaps other mods at some point in the future. Forked from thexyz's/
-- PilzAdam's original text-on-signs mod and rewritten by Vanessa Ezekowitz
-- and Diego Martinez
signs_lib = {}
2018-03-24 20:35:42 +01:00
signs_lib.path = minetest.get_modpath(minetest.get_current_modname())
2022-06-18 20:15:43 +02:00
local S = minetest.get_translator(minetest.get_current_modname())
2018-03-24 20:35:42 +01:00
dofile(signs_lib.path.."/encoding.lua")
2020-11-12 06:02:56 +01:00
dofile(signs_lib.path.."/api.lua")
dofile(signs_lib.path.."/standard_signs.lua")
dofile(signs_lib.path.."/compat.lua")