2020-10-26 17:38:53 +01:00
|
|
|
-- 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())
|
|
|
|
|
2021-12-11 12:24:24 +01:00
|
|
|
local S = dofile(signs_lib.path .. "/intllib.lua")
|
2020-10-26 17:38:53 +01:00
|
|
|
signs_lib.gettext = S
|
|
|
|
|
|
|
|
dofile(signs_lib.path.."/encoding.lua")
|
2021-02-19 14:15:18 +01:00
|
|
|
dofile(signs_lib.path.."/api.lua")
|
2020-10-26 17:38:53 +01:00
|
|
|
dofile(signs_lib.path.."/standard_signs.lua")
|
|
|
|
dofile(signs_lib.path.."/compat.lua")
|