blob: 34f2e062d6addff9091803f41dbf365e28c602b4 (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundStatusPacket;
#[derive(Clone, Debug, AzBuf, ServerboundStatusPacket)]
pub struct ServerboundPingRequest {
pub time: u64,
}
|