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
/// Implementation of the TerrainCache structure.
pub mod terrain_cache_struct;

/// Implementation of the LCMCache structure.
pub mod lcm_cache_struct;

/// Implementation of the PathCache structure.
pub mod path_cache_struct;

pub use lcm_cache_struct::LCMCache;
pub use path_cache_struct::PathCache;
pub use terrain_cache_struct::TerrainCache;