diff options
| author | mat <git@matdoes.dev> | 2025-12-28 14:31:41 +0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-28 14:31:41 +0500 |
| commit | 7ab3b8924f64f7eadb6b8928b6fae73cb06e4c2f (patch) | |
| tree | 5add5d27fd7c2638ebe6fab9bd7adcdae28a358d /azalea/src/prelude.rs | |
| parent | 9513f42e87f64c409cdb2a100500a50e5a713bac (diff) | |
| download | azalea-drasl-7ab3b8924f64f7eadb6b8928b6fae73cb06e4c2f.tar.xz | |
move Event and auto_reconnect to the azalea crate
Diffstat (limited to 'azalea/src/prelude.rs')
| -rw-r--r-- | azalea/src/prelude.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/prelude.rs b/azalea/src/prelude.rs index 2675c8f5..d39e50c4 100644 --- a/azalea/src/prelude.rs +++ b/azalea/src/prelude.rs @@ -1,14 +1,14 @@ //! The Azalea prelude. Things that are necessary for a bare-bones bot are //! re-exported here. -pub use azalea_client::{Account, Event}; +pub use azalea_client::Account; pub use azalea_core::tick::GameTick; pub use bevy_app::AppExit; // this is necessary to make the macros that reference bevy_ecs work pub use crate::ecs as bevy_ecs; pub use crate::{ - Client, ClientBuilder, + Client, ClientBuilder, Event, ecs::{component::Component, resource::Resource}, pathfinder::PathfinderClientExt, }; |
