chunkedge_protocol/packets/play/
place_ghost_recipe_s2c.rs

1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use super::recipe_book_add_s2c::RecipeDisplay;
4use crate::Packet;
5
6#[derive(Clone, Debug, Encode, Decode, Packet)]
7pub struct PlaceGhostRecipeS2c<'a> {
8    pub window_id: VarInt,
9    pub recipe_display: RecipeDisplay<'a>,
10}