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