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;
5pub use azalea_core::tick::GameTick;
6pub use bevy_app::AppExit;
7
8// this is necessary to make the macros that reference bevy_ecs work
9pub use crate::ecs as bevy_ecs;
10pub use crate::{
11 Client, ClientBuilder, Event,
12 ecs::{component::Component, resource::Resource},
13 pathfinder::PathfinderClientExt,
14};