Add comment on tuple bool field meaning in pathing

This commit is contained in:
Imbris 2021-08-21 15:19:12 +00:00
parent 4d62b9b937
commit a612631aa4

View File

@ -326,6 +326,7 @@ impl Route {
#[derive(Default, Clone, Debug)]
pub struct Chaser {
last_search_tgt: Option<Vec3<f32>>,
/// `bool` indicates whether the Route is a complete route to the target
route: Option<(Route, bool)>,
/// We use this hasher (AAHasher) because:
/// (1) we care about DDOS attacks (ruling out FxHash);