diff options
| author | mat <git@matdoes.dev> | 2025-05-08 06:09:03 +0900 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-05-08 06:09:03 +0900 |
| commit | 5d799be9dbfe2fd50aa2bdf30100f4df7e114674 (patch) | |
| tree | 299b3a572341ca3f278926c14f419a164e8988eb /azalea-client/src/lib.rs | |
| parent | ad4eaa174c924c23dc06a0aea06537a078ce4c45 (diff) | |
| download | azalea-drasl-5d799be9dbfe2fd50aa2bdf30100f4df7e114674.tar.xz | |
re-export bevy_tasks from azalea_client
Diffstat (limited to 'azalea-client/src/lib.rs')
| -rw-r--r-- | azalea-client/src/lib.rs | 3 |
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, |
