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#[cfg(feature = "log")]
20#[doc(hidden)]
21pub mod test_utils;
22
23pub use account::{Account, AccountOpts};
24pub use azalea_protocol::common::client_information::ClientInformation;
25pub use bevy_tasks;
28pub use client::{
29 Client, InConfigState, InGameState, JoinError, JoinedClientBundle, LocalPlayerBundle,
30 StartClientOpts, start_ecs_runner,
31};
32pub use events::Event;
33pub use movement::{
34 PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection,
35};
36pub use plugins::*;