chunkedge_protocol/packets/play/
recipe_book_settings_s2c.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::Packet;
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct RecipeBookSettingsS2c {
7    pub crafting_recipe_book_open: bool,
8    pub crafting_recipe_book_filter_active: bool,
9    pub smelting_recipe_book_open: bool,
10    pub smelting_recipe_book_filter_active: bool,
11    pub blast_furnace_recipe_book_open: bool,
12    pub blast_furnace_recipe_book_filter_active: bool,
13    pub smoker_recipe_book_open: bool,
14    pub smoker_recipe_book_filter_active: bool,
15}