| 86 | : spawnTypes(std::move(spawnTypes)), monsterParameters(std::move(monsterParameters)) {} |
| 87 | |
| 88 | Json SpawnProfile::toJson() const { |
| 89 | return JsonObject{ |
| 90 | {"spawnTypes", jsonFromStringSet(spawnTypes)}, |
| 91 | {"monsterParameters", monsterParameters} |
| 92 | }; |
| 93 | } |
| 94 | |
| 95 | SpawnProfile constructSpawnProfile(Json const& config, uint64_t seed) { |
| 96 | SpawnProfile spawnProfile; |
nothing calls this directly
no test coverage detected