screeps_utils/math/mod.rs
1//! Functions allowing calculation of the resulting values of formulas used by
2//! game mechanics related to constant values.
3
4mod gcl;
5mod gpl;
6mod tower;
7
8pub use gcl::control_points_for_gcl;
9pub use gpl::power_for_gpl;
10pub use tower::{
11 tower_attack_power_at_range, tower_heal_power_at_range, tower_repair_power_at_range,
12};