mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
13 lines
321 B
Rust
Executable file
13 lines
321 B
Rust
Executable file
use azalea_buf::AzBuf;
|
|
use azalea_protocol_macros::ClientboundGamePacket;
|
|
use azalea_world::MinecraftEntityId;
|
|
|
|
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
|
|
pub struct ClientboundTakeItemEntity {
|
|
#[var]
|
|
pub item_id: u32,
|
|
#[var]
|
|
pub player_id: MinecraftEntityId,
|
|
#[var]
|
|
pub amount: u32,
|
|
}
|