aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_title_text.rs
blob: c92172384b8f98415748c761429d8b6eb7bd877a (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 ClientboundSetTitleText {
    pub text: FormattedText,
}