blob: 3bdc0c79e599366bb0168edaa486ba1ea681de5c (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::McBuf;
use azalea_protocol_macros::ClientboundGamePacket;
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
pub struct ClientboundClearTitlesPacket {
pub reset_times: bool,
}
|