aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_move_entity_rot.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_move_entity_rot.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/c_move_entity_rot.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_move_entity_rot.rs b/azalea-protocol/src/packets/game/c_move_entity_rot.rs
new file mode 100755
index 00000000..a8362748
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_move_entity_rot.rs
@@ -0,0 +1,11 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ClientboundGamePacket;
+
+#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
+pub struct ClientboundMoveEntityRot {
+ #[var]
+ pub entity_id: u32,
+ pub y_rot: i8,
+ pub x_rot: i8,
+ pub on_ground: bool,
+}