1#![feature(error_generic_member_access)]
9#![feature(never_type)]
10
11mod account;
12mod client;
13mod entity_query;
14pub mod local_player;
15pub mod ping;
16pub mod player;
17mod plugins;
18
19#[doc(hidden)]
20pub mod test_simulation;
21
22pub use account::{Account, AccountOpts};
23pub use azalea_protocol::common::client_information::ClientInformation;
24pub use bevy_tasks;
27pub use client::{
28 Client, InConfigState, InGameState, JoinError, JoinedClientBundle, LocalPlayerBundle,
29 StartClientOpts, start_ecs_runner,
30};
31pub use events::Event;
32pub use movement::{
33 PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection,
34};
35pub use plugins::*;