예제 #1
0
        public FightsController(
            IFightService fightService,
            IPlayerService playerService,
            IFightLogService fightLogService,
            IAbilityService abilityService)
        {
            _fightService    = fightService;
            _playerService   = playerService;
            _fightLogService = fightLogService;
            _abilityService  = abilityService;

            rnd = new Random();
        }
예제 #2
0
 public FightLogsController(IFightLogService fightLogService)
 {
     _fightLogService = fightLogService;
 }