nurtex 1.1.0

Library for creating Minecraft bots.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod bot;
pub mod cluster;
pub mod storage;
pub mod swarm;
pub mod world;

pub use bot::Bot;
pub use cluster::Cluster;
pub use swarm::{JoinDelay, Swarm};

pub mod protocol {
  pub use nurtex_protocol::*;
}

pub mod proxy {
  pub use nurtex_proxy::*;
}