Ejemplo n.º 1
0
 public void PlayWithSetStrategy()
 {
     _strategy.Play(_players);
     WriteTactic();
 }
 public void PlayGame()
 {
     _teamStrategy.Play();
     Console.WriteLine("Strategy Changed into and Start Game");
 }
Ejemplo n.º 3
0
 //Function to play
 public void PlayGame()
 {  //Print the team//s name
     System.Console.WriteLine(teamName);
     //Play according to the strategy
     strategy.Play();
 }