aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_level_event_packet.rs
blob: b8572a85c2cd3b82dad361bc6116d77a4bc8b795 (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_core::BlockPos;
use packet_macros::GamePacket;

#[derive(Clone, Debug, GamePacket)]
pub struct ClientboundLevelEventPacket {
    pub type_: i32,
    pub pos: BlockPos,
    pub data: i32,
    pub global_event: bool,
}