chunkedge_protocol/packets/play/
place_recipe_c2s.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4
5#[derive(Clone, Debug, Encode, Decode, Packet)]
6pub struct PlaceRecipeC2s {
7 pub window_id: VarInt,
8 pub recipe: VarInt,
9 pub make_all: bool,
10}