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