aboutsummaryrefslogtreecommitdiff
path: root/features/cosmetics/cosmetic.js
blob: 1627f2f866dc77432d3ad86cc1a779bd589777c6 (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
class Cosmetic{
    constructor(player, parent, id){
        /**
         * @type {PlayerMP | Player}
         */
        this.player = player

        this.parent = parent

        this.id = id
        
        this.settings = this.parent.getPlayerCosmeticSettings(this.player, id)
    }

    onRender(){
        //override
    }

    onTick(){
        //override
    }
}

export default Cosmetic;