Spaces:
Sleeping
Sleeping
File size: 200 Bytes
f6213fc | 1 2 3 4 5 6 7 8 9 | use super::types::LocationData;
mod depots;
mod visits;
mod visits_extra;
pub(super) use depots::DEPOTS;
pub(super) const VISIT_GROUPS: &[&[LocationData]] = &[visits::VISITS, visits_extra::VISITS];
|