azalea_protocol/packets/game/
c_open_book.rs1use azalea_buf::AzBuf;
2use azalea_protocol_macros::ClientboundGamePacket;
3
4use super::s_interact::InteractionHand;
5
6#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
7pub struct ClientboundOpenBook {
8 pub hand: InteractionHand,
9}