aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-05-08 06:09:03 +0900
committermat <git@matdoes.dev>2025-05-08 06:09:03 +0900
commit5d799be9dbfe2fd50aa2bdf30100f4df7e114674 (patch)
tree299b3a572341ca3f278926c14f419a164e8988eb
parentad4eaa174c924c23dc06a0aea06537a078ce4c45 (diff)
downloadazalea-drasl-5d799be9dbfe2fd50aa2bdf30100f4df7e114674.tar.xz
re-export bevy_tasks from azalea_client
-rw-r--r--azalea-client/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index b83c24a8..31ad6e71 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -21,6 +21,9 @@ pub mod test_simulation;
pub use account::{Account, AccountOpts};
pub use azalea_protocol::common::client_information::ClientInformation;
+// Re-export bevy-tasks so plugins can make sure that they're using the same
+// version.
+pub use bevy_tasks;
pub use client::{
Client, InConfigState, InGameState, JoinError, JoinedClientBundle, LocalPlayerBundle,
StartClientOpts, start_ecs_runner,