예제 #1
0
 public GameRoundService(IScaleoutService scaleoutService, IPathingService pathingService, IMobMovementService mobMovementService, ITowerProjectileService towerProjectileService)
 {
     this.scaleoutService        = scaleoutService;
     this.pathingService         = pathingService;
     this.mobMovementService     = mobMovementService;
     this.towerProjectileService = towerProjectileService;
 }
예제 #2
0
 public GameRoundService(IScaleoutService scaleoutService, IPathingService pathingService, IMobMovementService mobMovementService, ITowerProjectileService towerProjectileService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService = pathingService;
     this.mobMovementService = mobMovementService;
     this.towerProjectileService = towerProjectileService;
 }
예제 #3
0
파일: ChatService.cs 프로젝트: Valchris/Tdd
 public ChatService(IScaleoutService scaleoutService, IGameService gameService)
 {
     this.scaleoutService = scaleoutService;
     this.gameService = gameService;
 }
예제 #4
0
 public ChatService(IScaleoutService scaleoutService, IGameService gameService)
 {
     this.scaleoutService = scaleoutService;
     this.gameService     = gameService;
 }
예제 #5
0
 public TowerProjectileService(IScaleoutService scaleoutService)
 {
     this.scaleoutService = scaleoutService;
 }
예제 #6
0
 public TowerProjectileService(IScaleoutService scaleoutService)
 {
     this.scaleoutService = scaleoutService;
 }
예제 #7
0
 public MobMovementService(IScaleoutService scaleoutService, IPathingService pathingService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService  = pathingService;
 }
예제 #8
0
 public GameService(IScaleoutService scaleoutService, IGameRoundService gameRoundService)
 {
     this.scaleoutService  = scaleoutService;
     this.gameRoundService = gameRoundService;
 }
예제 #9
0
파일: GameService.cs 프로젝트: Valchris/Tdd
 public GameService(IScaleoutService scaleoutService, IGameRoundService gameRoundService) {
     this.scaleoutService = scaleoutService;
     this.gameRoundService = gameRoundService;
 }
예제 #10
0
 public MobMovementService(IScaleoutService scaleoutService, IPathingService pathingService)
 {
     this.scaleoutService = scaleoutService;
     this.pathingService = pathingService;
 }