aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/lib.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2025-12-27 22:02:00 -0600
committerGitHub <noreply@github.com>2025-12-27 22:02:00 -0600
commit9513f42e87f64c409cdb2a100500a50e5a713bac (patch)
treebb6aa8b6d50fddf967bcb1f759e023754ea84e49 /azalea-client/src/lib.rs
parent588902ba4a3965982bdd84d92b20c6f7613f3978 (diff)
downloadazalea-drasl-9513f42e87f64c409cdb2a100500a50e5a713bac.tar.xz
Move Client struct to azalea crate (#297)
* move the Client struct out of azalea-client into azalea * actually add client impls in azalea
Diffstat (limited to 'azalea-client/src/lib.rs')
-rw-r--r--azalea-client/src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index cff0b03a..d9e66333 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -4,7 +4,6 @@
mod account;
mod client;
-mod entity_query;
pub mod local_player;
pub mod ping;
pub mod player;
@@ -21,8 +20,7 @@ pub use azalea_protocol::common::client_information::ClientInformation;
// version.
pub use bevy_tasks;
pub use client::{
- Client, InConfigState, InGameState, JoinedClientBundle, LocalPlayerBundle, StartClientOpts,
- start_ecs_runner,
+ InConfigState, InGameState, JoinedClientBundle, LocalPlayerBundle, start_ecs_runner,
};
pub use events::Event;
pub use movement::{StartSprintEvent, StartWalkEvent};