aboutsummaryrefslogtreecommitdiff
path: root/features/cosmetics/cosmetic.js
diff options
context:
space:
mode:
Diffstat (limited to 'features/cosmetics/cosmetic.js')
-rw-r--r--features/cosmetics/cosmetic.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/features/cosmetics/cosmetic.js b/features/cosmetics/cosmetic.js
deleted file mode 100644
index 878e425..0000000
--- a/features/cosmetics/cosmetic.js
+++ /dev/null
@@ -1,29 +0,0 @@
-
-class Cosmetic{
- constructor(player, parent, id){
-
- if(player.getUUID().toString() === Player.getUUID().toString()) player = Player
- /**
- * @type {PlayerMP | Player}
- */
- this.player = player
-
- this.parent = parent
-
- this.id = id
-
- this.settings = this.parent.getPlayerCosmeticSettings(this.player, id)
-
- this.onTick()
- }
-
- onRenderEntity(ticks, isInGui){
- //override
- }
-
- onTick(){
- //override
- }
-}
-
-export default Cosmetic; \ No newline at end of file