aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_rename_item_packet.rs
blob: 8308ac3196b908bae5e21fde7fc718e268292a06 (plain)
1
2
3
4
5
6
7
use azalea_buf::McBuf;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundRenameItemPacket {
    pub name: String,
}