diff options
| author | mat <git@matdoes.dev> | 2025-09-26 09:26:22 -0630 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-09-26 21:56:32 +0600 |
| commit | 0ec25dc45ec912bd9ef07ed9107f968de55f4a18 (patch) | |
| tree | dc393947dc6edba57baac65b4ee899f6108fe545 /azalea/src/pathfinder/mod.rs | |
| parent | c811dc471a31175d985e2d448a772c628dcad5f6 (diff) | |
| download | azalea-drasl-0ec25dc45ec912bd9ef07ed9107f968de55f4a18.tar.xz | |
don't re-export azalea::bot::*, and some doc improvements
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, |
