diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_entity_motion.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_set_entity_motion.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_entity_motion.rs b/azalea-protocol/src/packets/game/c_set_entity_motion.rs new file mode 100755 index 00000000..d0dd7698 --- /dev/null +++ b/azalea-protocol/src/packets/game/c_set_entity_motion.rs @@ -0,0 +1,11 @@ +use azalea_buf::AzBuf; +use azalea_protocol_macros::ClientboundGamePacket; + +#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] +pub struct ClientboundSetEntityMotion { + #[var] + pub id: u32, + pub xa: i16, + pub ya: i16, + pub za: i16, +} |
