//! Navmesh runtime types re-exported from the navmesh owner crate.
//!
//! # Facade role
//!
//! - **Owner:** `condor-pathfinding-navmesh` (`condor_navmesh::navmesh`).
//! - **This module:** feature-gated (`navmesh`) thin compatibility facade for
//! mesh geometry, portals, static/dynamic prepared query surfaces, and the
//! [`NavmeshPathfinder`] contract types.
//! - **Not owned here:** routing algorithms (`ChannelSearch`, `TAStar`,
//! `TRAStarBuilder`, optional `Polyanya`) are re-exported under
//! [`crate::algorithms`] and the crate root; this module is the mesh and
//! prepared-query substrate those solvers consume.
//!
//! Prefer crate-root imports (`condor::PreparedNavmeshBuilder`, …) in
//! application code. Depend on the facade package, not `condor-pathfinding-navmesh`.
pub use *;