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