steel_core/entity/ai/mod.rs
1//! Vanilla-shaped mob AI foundations.
2#![expect(
3 dead_code,
4 reason = "pathfinding controls are foundation code consumed by upcoming goals and navigation"
5)]
6
7pub mod control;
8pub mod goal;
9pub mod navigation;
10pub mod node;
11pub mod path;
12pub mod pathfinder;
13pub(crate) mod sensing;
14pub(crate) mod targeting;
15pub mod walk;