aboutsummaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'index.js')
-rw-r--r--index.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/index.js b/index.js
index e5a594c..ee82dcc 100644
--- a/index.js
+++ b/index.js
@@ -2,11 +2,14 @@
/// <reference lib="es2015" />
class SoopyAddons {
- constructor(){
+ constructor() {
this.FeatureManager = require("./featureClass/featureManager.js")
this.FeatureManager.parent = this
}
}
+register("command", ()=>{
+ require("./mappings/mappingCreator.js")
+}).setName("soopyreloadmappingsfile")
-new SoopyAddons() \ No newline at end of file
+new SoopyAddons()