screeps-pathfinding 0.1.4

Pathfinding algorithms for Screeps: World in native Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Helper methods for generating neighbor node functions.
pub mod neighbors;

/// Helper methods for generating movement cost functions.
pub mod movement_costs;

/// Helper methods for generating heuristic cost functions.
pub mod heuristics;

/// Helper methods for generating goal functions.
pub mod goals;

/// Provides caching structures and functions.
pub mod cache;

/// Provides structures and functions for moving along paths.
pub mod pathing;