nurtex 1.2.1

Create efficient and lightweight Minecraft bots or clients.
Documentation
#[cfg(feature = "bot")]
pub mod bot;

#[cfg(feature = "cluster")]
pub mod cluster;

#[cfg(feature = "random")]
pub mod random;

#[cfg(feature = "swarm")]
pub mod swarm;

#[cfg(feature = "speedometer")]
pub mod speedometer;

pub mod storage;
pub mod world;

#[cfg(feature = "bot")]
pub use bot::{Bot, BotChatExt, BotComponents, BotProfile, ClientInfo};

#[cfg(feature = "cluster")]
pub use cluster::Cluster;

#[cfg(feature = "swarm")]
pub use swarm::{JoinDelay, Swarm};

#[cfg(feature = "proxy")]
pub mod proxy {
  pub use nurtex_proxy::*;
}

pub mod registry {
  pub use nurtex_registry::*;
}

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