public GathererManager(IFightNotifiations fightNotifiations, ILocationEventHandler locationEventHandler)
 {
     this._fightNotifiations    = fightNotifiations;
     this._locationEventHandler = locationEventHandler;
 }
Beispiel #2
0
 public Fight(IFightNotifiations fightNotifiations)
 {
     _fightNotifiations = fightNotifiations;
 }
Beispiel #3
0
 public GameEngine(BaseGatherer hero, BaseGatherer enemy, IFightNotifiations notifictions)
 {
     Hero              = hero;
     Enemy             = enemy;
     this.notifictions = notifictions;
 }