condor-for-games 0.4.0

Rust pathfinding library for grids, polygonal scenes, navmeshes, and replanning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Multi-agent pathfinding (MAPF) runtime re-exported from the grid owner crate.
//!
//! # Facade role
//!
//! - **Owner:** `condor-pathfinding-grid` (`condor_grid::mapf`).
//! - **This module:** feature-gated (`grid`) thin facade. Types and planners are
//!   re-exported without renaming so owner identity is preserved.
//! - **Crate root:** the same items are also glob-re-exported at the crate root
//!   when `grid` is enabled; prefer `condor::…` for application imports.
//!
//! Implementations, conflict models, and starter planners stay in the grid crate.
//! This module does not own algorithms or fixture loaders.

pub use condor_grid::mapf::*;