| 474 | const char* DataSource::getRegion(int i) { return regions[i]; } |
| 475 | |
| 476 | std::string DataSource::randomState() { |
| 477 | assert(states.size() > 0); |
| 478 | return states.at(chRandom::uniformInt(0, states.size() - 1)); |
| 479 | } |
| 480 | |
| 481 | Nation DataSource::randomNation() { |
| 482 | assert(nations.size() > 0); |
nothing calls this directly
no test coverage detected