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::ecs::{component::Component, system::Resource};
10pub use crate::{
11 bot::BotClientExt, container::ContainerClientExt, pathfinder::PathfinderClientExt,
12 ClientBuilder,
13};