nurtex 1.2.1

Create efficient and lightweight Minecraft bots or clients.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Данные целевого сервера
pub struct TargetServer {
  pub host: String,
  pub port: u16,
}

impl Default for TargetServer {
  fn default() -> Self {
    Self {
      host: "localhost".to_string(),
      port: 25565,
    }
  }
}