diff options
Diffstat (limited to 'azalea/src/pathfinder/mod.rs')
| -rw-r--r-- | azalea/src/pathfinder/mod.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs index 736309a2..6fbf0de4 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -1,5 +1,8 @@ //! A pathfinding plugin to make bots able to traverse the world. //! +//! For the new functions on `Client` that the pathfinder adds, see +//! [`PathfinderClientExt`]. +//! //! Much of this code is based on [Baritone](https://github.com/cabaletta/baritone). pub mod astar; @@ -59,9 +62,9 @@ use self::{ moves::{ExecuteCtx, IsReachedCtx, SuccessorsFn}, }; use crate::{ - BotClientExt, WalkDirection, + WalkDirection, app::{App, Plugin}, - bot::{JumpEvent, LookAtEvent}, + bot::{BotClientExt, JumpEvent, LookAtEvent}, ecs::{ component::Component, entity::Entity, |
