From 431e4fc9d1657a50ebc34b8ac24f9bfaea06417f Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 17 Sep 2022 19:39:05 +0800 Subject: Initial move to babel + change fetch to use async/await --- features/featureBase/index.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 features/featureBase/index.js (limited to 'features/featureBase/index.js') diff --git a/features/featureBase/index.js b/features/featureBase/index.js deleted file mode 100644 index 7a11945..0000000 --- a/features/featureBase/index.js +++ /dev/null @@ -1,24 +0,0 @@ -/// -/// -import Feature from "../../featureClass/class"; - -class FeatureBase extends Feature { - constructor() { - super() - } - - onEnable(){ - this.initVariables() - } - - initVariables(){ - } - - onDisable(){ - this.initVariables() - } -} - -module.exports = { - class: new FeatureBase() -} \ No newline at end of file -- cgit