aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-07 20:34:53 -0500
committermat <github@matdoes.dev>2022-05-07 20:34:53 -0500
commit49454781cf02c85e065cf1cf4de22701175f3f13 (patch)
tree6af09cf725016a50e1a5dfd2ef7d64629f5a8160 /azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs
parentd8049a5d0c9a2c79d576785dc1681ae60e44a04b (diff)
downloadazalea-drasl-49454781cf02c85e065cf1cf4de22701175f3f13.tar.xz
add move packets
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs b/azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs
deleted file mode 100644
index 285a45a4..00000000
--- a/azalea-protocol/src/packets/game/clientbound_move_entity_packet.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use packet_macros::GamePacket;
-
-#[derive(Clone, Debug, GamePacket)]
-pub struct ClientboundMoveEntityPacket {
- #[var]
- pub entity_id: u32,
- pub y_rot: i16,
- pub x_rot: i16,
- pub z_rot: i16,
- pub on_ground: bool,
-}