add fallback head (steve)

This commit is contained in:
Lee
2024-04-06 19:13:40 +01:00
parent a060d5d027
commit 2e171b2cfd
6 changed files with 55 additions and 14 deletions

View File

@ -0,0 +1,16 @@
package cc.fascinated.player.impl;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter @AllArgsConstructor
public enum SkinPartEnum {
HEAD(8, 8, 8, 8, 20);
private final int x;
private final int y;
private final int width;
private final int height;
private final int scale;
}