chunkedge_protocol/packets/play/
sign_update_c2s.rs1use chunkedge_binary::{Bounded, Decode, Encode};
2
3use crate::{BlockPos, Packet};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct SignUpdateC2s<'a> {
7 pub position: BlockPos,
8 pub is_front_text: bool,
9 pub lines: [Bounded<&'a str, 384>; 4],
10}