beauty_pack/closet/init.lua

20 lines
359 B
Lua
Raw Normal View History

2020-11-10 14:52:17 -08:00
--
-- closet
-- License:GPLv3
--
local modname = "closet"
local modpath = minetest.get_modpath(modname)
-- internationalization boilerplate
local S = minetest.get_translator(minetest.get_current_modname())
--
-- Closet Mod
--
closet = {}
-- Load the files
assert(loadfile(modpath .. "/api/api.lua"))(modpath)
assert(loadfile(modpath .. "/closet.lua"))(S)