diff options
| author | Ubuntu <github@matdoes.dev> | 2023-02-10 18:06:18 +0000 |
|---|---|---|
| committer | Ubuntu <github@matdoes.dev> | 2023-02-10 18:06:18 +0000 |
| commit | f5ae1b97171473c3c2db99d92062a18a8313541e (patch) | |
| tree | 11f90f40a7894a4c569741b2cc77d0707449f64d /azalea/src/prelude.rs | |
| parent | 7e43e6d24a106fc9b1894a170db16b4f21ff8dad (diff) | |
| download | azalea-drasl-f5ae1b97171473c3c2db99d92062a18a8313541e.tar.xz | |
fix and improve examples in docs
Diffstat (limited to 'azalea/src/prelude.rs')
| -rw-r--r-- | azalea/src/prelude.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/azalea/src/prelude.rs b/azalea/src/prelude.rs index a26f72d1..a9ae6093 100644 --- a/azalea/src/prelude.rs +++ b/azalea/src/prelude.rs @@ -1,9 +1,6 @@ //! The Azalea prelude. Things that are necessary for a bare-bones bot are //! re-exported here. -pub use crate::bot::BotClientExt; -pub use crate::pathfinder::PathfinderClientExt; -pub use crate::{ClientBuilder, SwarmBuilder}; +pub use crate::{bot::BotClientExt, pathfinder::PathfinderClientExt, ClientBuilder}; pub use azalea_client::{Account, Client, Event}; -pub use azalea_ecs::component::Component; -pub use azalea_ecs::system::Resource; +pub use azalea_ecs::{component::Component, system::Resource}; |
