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

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