aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_sign_update.rs
blob: c43a0978566a9c3d5291e128dfe7d7848917232d (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::AzBuf;
use azalea_core::position::BlockPos;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundSignUpdate {
    pub pos: BlockPos,
    pub is_front_text: bool,
    pub lines: [String; 4],
}