aboutsummaryrefslogtreecommitdiff
path: root/azalea/benches
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2026-01-16 23:45:08 -0845
committermat <git@matdoes.dev>2026-01-17 07:03:37 -0200
commit5ec2c28109b9c4e17546f03e80508e0ef960fc77 (patch)
tree1f2799cec1b9c0257e63c204eb5124a16dec09c3 /azalea/benches
parentddb21fdd4acf6e03fecef33b16f3acc25e4eaf30 (diff)
downloadazalea-drasl-5ec2c28109b9c4e17546f03e80508e0ef960fc77.tar.xz
move NodeMap to a module
Diffstat (limited to 'azalea/benches')
-rw-r--r--azalea/benches/pathfinder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/benches/pathfinder.rs b/azalea/benches/pathfinder.rs
index 9f8d2c34..5c06474b 100644
--- a/azalea/benches/pathfinder.rs
+++ b/azalea/benches/pathfinder.rs
@@ -3,7 +3,7 @@ use std::{hint::black_box, sync::Arc, time::Duration};
use azalea::{
BlockPos,
pathfinder::{
- astar::{self, PathfinderTimeout, WeightedNode, a_star},
+ astar::{self, PathfinderTimeout, a_star, heap::WeightedNode},
custom_state::CustomPathfinderStateRef,
goals::{BlockPosGoal, Goal},
mining::MiningCache,