blob: 7e1b2a23bea4db76c03b47f4ec895990e8f8a283 (
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 ClientboundPing {
pub id: u32,
}
|