diff options
author | cheapie <no-email-for-you@example.com> | 2025-01-11 23:10:13 -0600 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2025-01-11 23:10:13 -0600 |
commit | f9991863f5816920a1c8d8446e53895d95b4fc33 (patch) | |
tree | 8aa5df658642ed9730e65765b2e61bb003b1dcb7 /init.lua | |
download | techage_forceload-main.tar techage_forceload-main.tar.gz techage_forceload-main.tar.bz2 techage_forceload-main.tar.xz techage_forceload-main.zip |
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..01a37e2 --- /dev/null +++ b/init.lua @@ -0,0 +1,12 @@ +techage_forceload = {} + +local components = { + "mark", + "forceload", +} + +local basepath = core.get_modpath(core.get_current_modname()).."/" + +for _,v in ipairs(components) do + dofile(basepath..v..".lua") +end |