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