mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +00:00
9 lines
275 B
Rust
Executable file
9 lines
275 B
Rust
Executable file
use crate::mc_buf::UnsizedByteArray;
|
|
use azalea_core::resource_location::ResourceLocation;
|
|
use packet_macros::GamePacket;
|
|
|
|
#[derive(Clone, Debug, GamePacket)]
|
|
pub struct ClientboundCustomPayloadPacket {
|
|
pub identifier: ResourceLocation,
|
|
pub data: UnsizedByteArray,
|
|
}
|