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