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