1
0
mirror of https://github.com/mt-mods/signs_lib.git synced 2024-09-28 23:10:21 +02:00
signs_lib/init.lua
2021-12-08 21:39:03 +11:00

17 lines
571 B
Lua

-- 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 = {}
signs_lib.path = minetest.get_modpath(minetest.get_current_modname())
local S = dofile(signs_lib.path .. "/intllib.lua")
signs_lib.gettext = S
dofile(signs_lib.path.."/encoding.lua")
dofile(signs_lib.path.."/api.lua")
dofile(signs_lib.path.."/standard_signs.lua")
dofile(signs_lib.path.."/compat.lua")