game-antum/mods/antum/listitems/init.lua

29 lines
437 B
Lua

--[[ LICENSE HEADER
MIT Licensing
Copyright © 2017 Jordan Irwin
See: LICENSE.txt
--]]
--- @script init.lua
listitems = {}
listitems.modname = core.get_current_modname()
listitems.modpath = core.get_modpath(listitems.modname)
local scripts = {
'settings',
'logging',
'api',
}
for index, script in ipairs(scripts) do
dofile(listitems.modpath .. '/' .. script .. '.lua')
end
-- DEBUG:
listitems.logDebug('Loaded')