blob: 10a33e3c3860e461d9a9a6efe3f080c4523db903 (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundBlockChangedAck {
#[var]
pub seq: u32,
}
|