chunkedge_protocol/packets/play/
open_sign_editor_s2c.rs1use chunkedge_binary::{Decode, Encode};
2
3use crate::{BlockPos, Packet};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct OpenSignEditorS2c {
7 pub location: BlockPos,
8 pub is_front_text: bool,
9}