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