diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2025-12-27 22:02:00 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-27 22:02:00 -0600 |
| commit | 9513f42e87f64c409cdb2a100500a50e5a713bac (patch) | |
| tree | bb6aa8b6d50fddf967bcb1f759e023754ea84e49 /azalea/src/prelude.rs | |
| parent | 588902ba4a3965982bdd84d92b20c6f7613f3978 (diff) | |
| download | azalea-drasl-9513f42e87f64c409cdb2a100500a50e5a713bac.tar.xz | |
Move Client struct to azalea crate (#297)
* move the Client struct out of azalea-client into azalea
* actually add client impls in azalea
Diffstat (limited to 'azalea/src/prelude.rs')
| -rw-r--r-- | azalea/src/prelude.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/azalea/src/prelude.rs b/azalea/src/prelude.rs index 335244cc..2675c8f5 100644 --- a/azalea/src/prelude.rs +++ b/azalea/src/prelude.rs @@ -1,16 +1,14 @@ //! The Azalea prelude. Things that are necessary for a bare-bones bot are //! re-exported here. -pub use azalea_client::{Account, Client, Event}; +pub use azalea_client::{Account, Event}; 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::{ - ClientBuilder, - bot::BotClientExt, - container::ContainerClientExt, + Client, ClientBuilder, ecs::{component::Component, resource::Resource}, pathfinder::PathfinderClientExt, }; |
