From 1ca1f1d9e27aeea3adaf359570f2e211e0a9af74 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 1 Jan 2026 22:28:53 -0600 Subject: Extensible Account (#301) * refactor Account * clean up implementation and docs * add AccountTrait::join * update changelog * update example --- azalea-client/src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'azalea-client/src/lib.rs') diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs index 6bdc2713..59730bf6 100644 --- a/azalea-client/src/lib.rs +++ b/azalea-client/src/lib.rs @@ -2,7 +2,7 @@ #![feature(error_generic_member_access)] #![feature(never_type)] -mod account; +pub mod account; mod client; pub mod local_player; pub mod ping; @@ -13,7 +13,9 @@ mod plugins; #[doc(hidden)] pub mod test_utils; -pub use account::{Account, AccountOpts}; +#[deprecated = "moved to `account::Account`."] +pub type Account = account::Account; + pub use azalea_physics::local_player::{PhysicsState, SprintDirection, WalkDirection}; pub use azalea_protocol::common::client_information::ClientInformation; // Re-export bevy-tasks so plugins can make sure that they're using the same -- cgit v1.2.3