minecraft-net 0.2.0

A library allowing easier communication via the minecraft protocol
Documentation
1
2
3
4
5
6
7
8
9
use minecraft_net_proc::{Field, Packet};

Field!(ReportDetail, {
    title: String,
    description: String,
});
Packet!(CustomReportDetails, 0x0F, {
    details: PrefixedArray<ReportDetail>
});