| 66 | SpawnType spawnTypeFromJson(Json const& config); |
| 67 | |
| 68 | struct SpawnProfile { |
| 69 | SpawnProfile(); |
| 70 | SpawnProfile(Json const& config); |
| 71 | SpawnProfile(StringSet spawnTypes, Json monsterParameters); |
| 72 | |
| 73 | Json toJson() const; |
| 74 | |
| 75 | StringSet spawnTypes; |
| 76 | Json monsterParameters; |
| 77 | }; |
| 78 | |
| 79 | SpawnProfile constructSpawnProfile(Json const& config, uint64_t seed); |
| 80 |