nurtex-protocol 1.2.1

Library that allows a Minecraft client to communicate with a server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Макрос для объявления модуля пакетов
macro_rules! declare_packet_module {
  ($name:ident) => {
    pub mod $name {
      mod enumeration;
      mod packets;

      pub use enumeration::*;
      pub use packets::*;
    }
  };
}

declare_packet_module!(configuration);
declare_packet_module!(handshake);
declare_packet_module!(login);
declare_packet_module!(play);
declare_packet_module!(status);