chunkedge_protocol/packets/play/
jigsaw_generate_c2s.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::{BlockPos, Packet};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct JigsawGenerateC2s {
7 pub position: BlockPos,
8 pub levels: VarInt,
9 pub keep_jigsaws: bool,
10}