mirror of
https://github.com/funkemunky/KauriV3.git
synced 2026-06-15 19:50:37 +00:00
Create WPacketPlayOutEntityDestroy.java
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package dev.brighten.ac.packet.wrapper.out;
|
||||
|
||||
import dev.brighten.ac.packet.wrapper.PacketType;
|
||||
import dev.brighten.ac.packet.wrapper.WPacket;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
@Builder
|
||||
public class WPacketPlayOutEntityDestroy extends WPacket {
|
||||
private int[] entityIds;
|
||||
|
||||
public WPacketPlayOutEntityDestroy(int[] entityIds) {
|
||||
this.entityIds = entityIds;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PacketType getPacketType() {
|
||||
return PacketType.ENTITY_DESTROY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getPacket() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user