aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_subtitle_text.rs
blob: 14454c72aa8e38ba0346b21045c617328034a913 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_chat::FormattedText;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetSubtitleText {
    pub text: FormattedText,
}