blob: 0dd3f5f1c9f2045d0af882e1f19ed50ecb4a38fa (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;
#[derive(AzBuf, Clone, Debug, PartialEq, ServerboundGamePacket)]
pub struct ServerboundPong {
pub id: u32,
}
|