mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
35 lines
1 KiB
Rust
35 lines
1 KiB
Rust
//! Significantly abstract [`azalea_protocol`] so it's actually useable for
|
|
//! real clients. If you want to make bots, you should use the
|
|
//! [`azalea`] crate instead.
|
|
//!
|
|
//! [`azalea_protocol`]: https://docs.rs/azalea-protocol
|
|
//! [`azalea`]: https://docs.rs/azalea
|
|
|
|
#![feature(error_generic_member_access)]
|
|
#![feature(never_type)]
|
|
|
|
mod account;
|
|
mod client;
|
|
mod entity_query;
|
|
mod local_player;
|
|
pub mod ping;
|
|
mod player;
|
|
mod plugins;
|
|
pub mod raw_connection;
|
|
|
|
#[doc(hidden)]
|
|
pub mod test_simulation;
|
|
|
|
pub use account::{Account, AccountOpts};
|
|
pub use azalea_protocol::common::client_information::ClientInformation;
|
|
pub use client::{
|
|
Client, DefaultPlugins, InConfigState, JoinError, JoinedClientBundle, LocalPlayerBundle,
|
|
StartClientOpts, TickBroadcast, start_ecs_runner,
|
|
};
|
|
pub use events::Event;
|
|
pub use local_player::{GameProfileComponent, Hunger, InstanceHolder, TabList};
|
|
pub use movement::{
|
|
PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection,
|
|
};
|
|
pub use player::PlayerInfo;
|
|
pub use plugins::*;
|