aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_ping_request_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_ping_request_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_ping_request_packet.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_ping_request_packet.rs b/azalea-protocol/src/packets/game/serverbound_ping_request_packet.rs
new file mode 100755
index 00000000..0966e941
--- /dev/null
+++ b/azalea-protocol/src/packets/game/serverbound_ping_request_packet.rs
@@ -0,0 +1,7 @@
+use azalea_buf::McBuf;
+use azalea_protocol_macros::ServerboundGamePacket;
+
+#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
+pub struct ServerboundPingRequestPacket {
+ pub time: u64,
+}