azalea/
prelude.rs

1//! The Azalea prelude. Things that are necessary for a bare-bones bot are
2//! re-exported here.
3
4pub use azalea_client::{Account, Client, Event};
5pub use azalea_core::tick::GameTick;
6
7// this is necessary to make the macros that reference bevy_ecs work
8pub use crate::ecs as bevy_ecs;
9pub use crate::{
10    ClientBuilder,
11    bot::BotClientExt,
12    container::ContainerClientExt,
13    ecs::{component::Component, resource::Resource},
14    pathfinder::PathfinderClientExt,
15};