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