9
0
mirror of https://github.com/GeyserExtensionists/GeyserUtils.git synced 2026-01-04 15:41:45 +00:00

custom entity

This commit is contained in:
zimzaza4
2024-04-14 19:37:32 +08:00
parent fa76d14bb8
commit 5d25756015
5 changed files with 124 additions and 20 deletions

View File

@@ -0,0 +1,17 @@
package me.zimzaza4.geyserutils.common.packet;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.UUID;
@Setter
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class CustomEntityPacket extends CustomPayloadPacket {
private int entityId;
private String identifier;
}