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

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