1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

make azalea::pathfinder::debug public

This commit is contained in:
mat 2025-04-19 21:09:38 +03:00
parent b7bc08e352
commit fefc5db09a
3 changed files with 3 additions and 4 deletions

View file

@ -32,7 +32,7 @@ use std::{sync::Arc, thread};
use azalea::ClientInformation; use azalea::ClientInformation;
use azalea::brigadier::command_dispatcher::CommandDispatcher; use azalea::brigadier::command_dispatcher::CommandDispatcher;
use azalea::ecs::prelude::*; use azalea::ecs::prelude::*;
use azalea::pathfinder::PathfinderDebugParticles; use azalea::pathfinder::debug::PathfinderDebugParticles;
use azalea::prelude::*; use azalea::prelude::*;
use azalea::swarm::prelude::*; use azalea::swarm::prelude::*;
use commands::{CommandSource, register_commands}; use commands::{CommandSource, register_commands};

View file

@ -10,7 +10,7 @@ use super::ExecutingPath;
/// ///
/// ``` /// ```
/// # use azalea::prelude::*; /// # use azalea::prelude::*;
/// # use azalea::pathfinder::PathfinderDebugParticles; /// # use azalea::pathfinder::debug::PathfinderDebugParticles;
/// # #[derive(Component, Clone, Default)] /// # #[derive(Component, Clone, Default)]
/// # pub struct State; /// # pub struct State;
/// ///

View file

@ -4,7 +4,7 @@
pub mod astar; pub mod astar;
pub mod costs; pub mod costs;
mod debug; pub mod debug;
pub mod goals; pub mod goals;
pub mod mining; pub mod mining;
pub mod moves; pub mod moves;
@ -43,7 +43,6 @@ use rel_block_pos::RelBlockPos;
use tokio::sync::broadcast::error::RecvError; use tokio::sync::broadcast::error::RecvError;
use tracing::{debug, error, info, trace, warn}; use tracing::{debug, error, info, trace, warn};
pub use self::debug::PathfinderDebugParticles;
use self::debug::debug_render_path_with_particles; use self::debug::debug_render_path_with_particles;
use self::goals::Goal; use self::goals::Goal;
use self::mining::MiningCache; use self::mining::MiningCache;