mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
12 lines
345 B
Rust
Executable file
12 lines
345 B
Rust
Executable file
use crate::mc_buf::UnsizedByteArray;
|
|
use azalea_core::resource_location::ResourceLocation;
|
|
use packet_macros::LoginPacket;
|
|
use std::hash::Hash;
|
|
|
|
#[derive(Hash, Clone, Debug, LoginPacket)]
|
|
pub struct ClientboundCustomQueryPacket {
|
|
#[varint]
|
|
pub transaction_id: u32,
|
|
pub identifier: ResourceLocation,
|
|
pub data: UnsizedByteArray,
|
|
}
|