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