From 9513f42e87f64c409cdb2a100500a50e5a713bac Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sat, 27 Dec 2025 22:02:00 -0600 Subject: Move Client struct to azalea crate (#297) * move the Client struct out of azalea-client into azalea * actually add client impls in azalea --- azalea/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'azalea/src/lib.rs') diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 0b656896..2105daee 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -6,12 +6,14 @@ pub mod auto_respawn; pub mod auto_tool; pub mod bot; mod builder; +mod client_impl; pub mod container; mod join_opts; pub mod nearest_entity; pub mod pathfinder; pub mod prelude; pub mod swarm; +pub mod tick_broadcast; pub use azalea_auth as auth; pub use azalea_block as block; @@ -49,6 +51,8 @@ pub use builder::ClientBuilder; use futures::future::BoxFuture; pub use join_opts::JoinOpts; +pub use crate::client_impl::Client; + pub type BoxHandleFn = Box BoxFuture<'static, R> + Send>; pub type HandleFn = fn(Client, azalea_client::Event, S) -> Fut; -- cgit v1.2.3