chunkedge_protocol/packets/play/
test_instance_block_status_s2c.rs

1use chunkedge_binary::{Decode, Encode, TextComponent};
2use chunkedge_math::DVec3;
3
4use crate::Packet;
5
6#[derive(Clone, Debug, Encode, Decode, Packet)]
7pub struct TestInstanceBlockStatusS2c {
8    pub status: TextComponent,
9    pub size: Option<DVec3>,
10}