9
0
mirror of https://github.com/GeyserExtensionists/GeyserUtils.git synced 2026-01-06 15:51:47 +00:00

custom entity

This commit is contained in:
zimzaza4
2024-04-20 13:26:46 +08:00
parent 48389f2fbf
commit 6537d6f247
3 changed files with 29 additions and 19 deletions

View File

@@ -9,8 +9,12 @@ import lombok.Setter;
@NoArgsConstructor
@Getter
@Setter
public class CustomHitBoxPacket extends CustomPayloadPacket {
public class CustomEntityDataPacket extends CustomPayloadPacket {
private int entityId;
private float height;
private float width;
private Float height;
private Float width;
private Float scale;
}