aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/c_code_of_conduct.rs
blob: 03f133a889c21ebb34a06d6313b05b097c8cdb43 (plain)
1
2
3
4
5
6
7
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundConfigPacket;

#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)]
pub struct ClientboundCodeOfConduct {
    pub code_of_conduct: String,
}