aboutsummaryrefslogtreecommitdiff
path: root/src/features/featureBase/index.js
blob: 2a96a7f7d043358b7b97dbc3dfb80eab73f764db (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()
}