public StarSystemBuilderService(Random random, PlanetBuilderService planetBuilderService, AnomalyGeneratorService anomalyGeneratorService, StellarForgeConfiguration stellarForgeConfiguration)
 {
     rnd = random;
     this.planetBuilderService      = planetBuilderService;
     this.anomalyGeneratorService   = anomalyGeneratorService;
     this.stellarForgeConfiguration = stellarForgeConfiguration;
 }
Beispiel #2
0
 public MoonBuilderService(Random random, StellarForgeConfiguration stellarForgeConfiguration)
 {
     rnd = random;
     this.stellarForgeConfiguration = stellarForgeConfiguration;
 }
Beispiel #3
0
 public PlanetBuilderService(Random random, MoonBuilderService moonBuilderService, StellarForgeConfiguration stellarForgeConfiguration)
 {
     rnd = random;
     this.moonBuilderService        = moonBuilderService;
     this.stellarForgeConfiguration = stellarForgeConfiguration;
 }