nurtex 0.5.2

Lightweight library for creating Minecraft bots. Asynchronous, optimized, ease of coding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Структура данных опыта
#[derive(Debug, Clone)]
pub struct Experience {
  pub level: u32,
  pub progress: f32,
  pub total: u32,
}

impl Default for Experience {
  fn default() -> Self {
    Self {
      level: 0,
      progress: 0.0,
      total: 0,
    }
  }
}