summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua12
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