aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_open_book_packet.rs
blob: 98d512d1e144552cc0cf400ca49bfacfdc64ab0e (plain)
1
2
3
4
5
6
7
8
use super::serverbound_interact_packet::InteractionHand;
use azalea_buf::McBuf;
use packet_macros::ClientboundGamePacket;

#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundOpenBookPacket {
    pub hand: InteractionHand,
}