diff options
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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() |