aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/status/c_pong_response.rs
blob: 34a5e73b1bb698d8c594d0aa42bbf12cbd4a8793 (plain)
1
2
3
4
5
6
7
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundStatusPacket;

#[derive(Clone, Debug, AzBuf, ClientboundStatusPacket)]
pub struct ClientboundPongResponse {
    pub time: u64,
}