Darktide-Mod-Loader/scripts/mods/dml/init.lua
Lucas Schwiderski e369e692af
chore: Import base mod from DMF
Co-authored-by: Aussiemon <mattrohrlach+github@gmail.com>
2023-02-27 10:08:57 +01:00

16 lines
357 B
Lua

-- The loader object that is used during game boot
-- to initialize the modding environment.
local loader = {}
Mods = {
hook = {},
lua = setmetatable({}, {
__index = { debug = debug, io = io, ffi = ffi, os = os },
}),
}
dofile("scripts/mods/dml/require")
dofile("scripts/mods/dml/class")
dofile("scripts/mods/dml/hook")
return loader