blob: 335244cca8bc8d8b9151572dae56705c3f394dc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! 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_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,
ecs::{component::Component, resource::Resource},
pathfinder::PathfinderClientExt,
};
|