aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-07 21:44:11 -0500
committermat <github@matdoes.dev>2022-05-07 21:44:11 -0500
commitf62a681474df698d87deb43c71238b83a26f0f1f (patch)
tree68b26f053faf818cf6780688f41d7840cdcc7494 /azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs
parent98eee6d908a5651c55131b80dc3c153a6708052e (diff)
downloadazalea-drasl-f62a681474df698d87deb43c71238b83a26f0f1f.tar.xz
remove entities packet
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs b/azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs
new file mode 100644
index 00000000..265d0c64
--- /dev/null
+++ b/azalea-protocol/src/packets/game/clientbound_remove_entities_packet.rs
@@ -0,0 +1,7 @@
+use packet_macros::GamePacket;
+
+#[derive(Clone, Debug, GamePacket)]
+pub struct ClientboundRemoveEntitiesPacket {
+ #[var]
+ pub entity_ids: Vec<u32>,
+}