Esempio n. 1
0
 public virtual void ApplyGameStrategy(IGameSrategy strategy)
 {
     this._strategy = strategy;
 }
Esempio n. 2
0
 public Game(string name)
 {
     this.Name = name;
     this.SetPlayers();
     this._strategy = new BattleShipGameStrategy();
 }