diff options
Diffstat (limited to 'azalea-protocol/src/packets/config/c_code_of_conduct.rs')
| -rw-r--r-- | azalea-protocol/src/packets/config/c_code_of_conduct.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/config/c_code_of_conduct.rs b/azalea-protocol/src/packets/config/c_code_of_conduct.rs new file mode 100644 index 00000000..03f133a8 --- /dev/null +++ b/azalea-protocol/src/packets/config/c_code_of_conduct.rs @@ -0,0 +1,7 @@ +use azalea_buf::AzBuf; +use azalea_protocol_macros::ClientboundConfigPacket; + +#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)] +pub struct ClientboundCodeOfConduct { + pub code_of_conduct: String, +} |
