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

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

    onEnable(){
    }

    onDisable(){
    }
}

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