chunkedge_protocol/packets/play/
recipe_book_seen_recipe_c2s.rs

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