Add Player Client Options API

This commit is contained in:
MiniDigger | Martin
2020-01-20 21:38:34 +01:00
parent 21792a6e4b
commit 6143a7a97b
4 changed files with 245 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.destroystokyo.paper;
public interface SkinParts {
boolean hasCapeEnabled();
boolean hasJacketEnabled();
boolean hasLeftSleeveEnabled();
boolean hasRightSleeveEnabled();
boolean hasLeftPantsEnabled();
boolean hasRightPantsEnabled();
boolean hasHatsEnabled();
int getRaw();
}