aboutsummaryrefslogtreecommitdiff
path: root/features/featureBase/index.js
blob: 7a11945097d962edde84585127581ae75dcbdf4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/// <reference types="../../../CTAutocomplete" />
/// <reference lib="es2015" />
import Feature from "../../featureClass/class";

class FeatureBase extends Feature {
    constructor() {
        super()
    }

    onEnable(){
        this.initVariables()
    }

    initVariables(){
    }

    onDisable(){
        this.initVariables()
    }
}

module.exports = {
    class: new FeatureBase()
}