chunkedge_protocol/packets/play/
open_book_s2c.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Hand, Packet};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct OpenBookS2c {
7    pub hand: Hand,
8}