aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_level_event.rs
blob: f41a1f429ee4c871ad4deea5636fd6f4d5b2debc (plain)
1
2
3
4
5
6
7
8
9
10
11
use azalea_buf::AzBuf;
use azalea_core::position::BlockPos;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundLevelEvent {
    pub event_type: u32,
    pub pos: BlockPos,
    pub data: u32,
    pub global_event: bool,
}