Esempio n. 1
0
 public SquadAttackCommand(ICombatStateManager combatStateManager,
                           ICombatService combatService,
                           ICombatEventBus eventBus)
 {
     _combatStateManager = combatStateManager;
     _combatService      = combatService;
     _eventBus           = eventBus;
 }
Esempio n. 2
0
 public SquadMoveCommand(ICombatStateManager globalState,
                         ICombatService combatService)
 {
     _combatStateManager = globalState;
     _combatService      = combatService;
 }