diff options
| author | mat <git@matdoes.dev> | 2023-09-14 21:01:56 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-09-14 21:01:56 -0500 |
| commit | e585d9024d5d1a267659c4a05b535c3ffdd81bfb (patch) | |
| tree | d35c84c0963a602f8296a409bb5144cd69c53d9f /azalea/src/pathfinder/simulation.rs | |
| parent | c3717eaead706ed0d2fbd17b3c91fc2be759ff4a (diff) | |
| download | azalea-drasl-e585d9024d5d1a267659c4a05b535c3ffdd81bfb.tar.xz | |
detect obstructions while pathfinding and better results on timeout
Diffstat (limited to 'azalea/src/pathfinder/simulation.rs')
| -rw-r--r-- | azalea/src/pathfinder/simulation.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea/src/pathfinder/simulation.rs b/azalea/src/pathfinder/simulation.rs index 4f179795..42d42ff9 100644 --- a/azalea/src/pathfinder/simulation.rs +++ b/azalea/src/pathfinder/simulation.rs @@ -1,3 +1,5 @@ +//! Simulate the Minecraft world, currently only used for tests. + use std::{sync::Arc, time::Duration}; use azalea_client::PhysicsState; |
