azalea_protocol/packets/config/
c_custom_report_details.rs1use azalea_buf::AzBuf;
2use azalea_protocol_macros::ClientboundConfigPacket;
3use indexmap::IndexMap;
4
5#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)]
6pub struct ClientboundCustomReportDetails {
7 pub details: IndexMap<String, String>,
8}