public void Construct(RoadSectionGeneratorService generationService, NewGameService newGameService)
 {
     _generationService = generationService;
     _newGameService    = newGameService;
 }
Example #2
0
 public void Construct(NewGameService newGameService)
 {
     _newGameService = newGameService;
 }
Example #3
0
 public void Construct(RoadManager roadManager, NewGameService newGameService)
 {
     _roadManager    = roadManager;
     _newGameService = newGameService;
 }