chunkedge_protocol/packets/play/
recipe_book_remove_s2c.rs

1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4#[derive(Clone, Debug, Encode, Decode, Packet)]
5pub struct RecipeBookRemoveS2c {
6    pub recipes: Vec<VarInt>,
7}