azalea_protocol/packets/game/
clientbound_recipe_book_settings_packet.rsuse azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundRecipeBookSettingsPacket {
pub book_settings: RecipeBookSettings,
}
#[derive(Clone, Debug, McBuf)]
pub struct RecipeBookSettings {
pub gui_open: bool,
pub filtering_craftable: bool,
pub furnace_gui_open: bool,
pub furnace_filtering_craftable: bool,
pub blast_furnace_gui_open: bool,
pub blast_furnace_filtering_craftable: bool,
pub smoker_gui_open: bool,
pub smoker_filtering_craftable: bool,
}