aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_ping_request.rs
blob: 1c4c8adcb97141bb943eb6bd30dec8206d81a382 (plain)
1
2
3
4
5
6
7
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundPingRequest {
    pub time: u64,
}