Beispiel #1
0
 public GameRoundService(IScaleoutService scaleoutService, IPathingService pathingService, IMobMovementService mobMovementService, ITowerProjectileService towerProjectileService)
 {
     this.scaleoutService        = scaleoutService;
     this.pathingService         = pathingService;
     this.mobMovementService     = mobMovementService;
     this.towerProjectileService = towerProjectileService;
 }
Beispiel #2
0
 public GameRoundService(IScaleoutService scaleoutService, IPathingService pathingService, IMobMovementService mobMovementService, ITowerProjectileService towerProjectileService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService = pathingService;
     this.mobMovementService = mobMovementService;
     this.towerProjectileService = towerProjectileService;
 }
Beispiel #3
0
 public ChatService(IScaleoutService scaleoutService, IGameService gameService)
 {
     this.scaleoutService = scaleoutService;
     this.gameService = gameService;
 }
Beispiel #4
0
 public ChatService(IScaleoutService scaleoutService, IGameService gameService)
 {
     this.scaleoutService = scaleoutService;
     this.gameService     = gameService;
 }
Beispiel #5
0
 public TowerProjectileService(IScaleoutService scaleoutService)
 {
     this.scaleoutService = scaleoutService;
 }
Beispiel #6
0
 public TowerProjectileService(IScaleoutService scaleoutService)
 {
     this.scaleoutService = scaleoutService;
 }
Beispiel #7
0
 public MobMovementService(IScaleoutService scaleoutService, IPathingService pathingService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService  = pathingService;
 }
Beispiel #8
0
 public GameService(IScaleoutService scaleoutService, IGameRoundService gameRoundService)
 {
     this.scaleoutService  = scaleoutService;
     this.gameRoundService = gameRoundService;
 }
Beispiel #9
0
 public GameService(IScaleoutService scaleoutService, IGameRoundService gameRoundService) {
     this.scaleoutService = scaleoutService;
     this.gameRoundService = gameRoundService;
 }
Beispiel #10
0
 public MobMovementService(IScaleoutService scaleoutService, IPathingService pathingService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService = pathingService;
 }