mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
11 lines
258 B
Rust
11 lines
258 B
Rust
use azalea_buf::McBuf;
|
|
use azalea_core::BlockPos;
|
|
use packet_macros::GamePacket;
|
|
|
|
#[derive(Clone, Debug, McBuf, GamePacket)]
|
|
pub struct ClientboundLevelEventPacket {
|
|
pub type_: i32,
|
|
pub pos: BlockPos,
|
|
pub data: i32,
|
|
pub global_event: bool,
|
|
}
|