blob: d5ea46cfa74f11967aab76272749dc545c9724d7 (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundStatusPacket;
#[derive(AzBuf, ClientboundStatusPacket, Clone, Debug, PartialEq)]
pub struct ClientboundPongResponse {
pub time: u64,
}
|