Darktide Mod Manager #39

Merged
lucas merged 91 commits from feat/dtmm into master 2023-03-01 22:27:42 +01:00
Showing only changes of commit d9e6cc05a0 - Show all commits

View file

@ -1,7 +1,15 @@
-- Keep a backup of certain system libraries before -- Keep a backup of certain system libraries before
-- Fatshark's code scrubs them. -- Fatshark's code scrubs them.
-- The loader can then decide to pass them on to mods, or ignore them -- The loader can then decide to pass them on to mods, or ignore them
local libs = { io = io, debug = debug, ffi = ffi, os = os } local libs = {
io = io,
debug = debug,
ffi = ffi,
os = os,
load = load,
loadfile = loadfile,
loadstring = loadstring,
}
require("scripts/game_states/boot/state_boot_sub_state_base") require("scripts/game_states/boot/state_boot_sub_state_base")
local StateBootLoadMods = class("StateBootLoadMods", "StateBootSubStateBase") local StateBootLoadMods = class("StateBootLoadMods", "StateBootSubStateBase")