コード例 #1
0
 public void PlayWithSetStrategy()
 {
     _strategy.Play(_players);
     WriteTactic();
 }
コード例 #2
0
 public void PlayGame()
 {
     _teamStrategy.Play();
     Console.WriteLine("Strategy Changed into and Start Game");
 }
コード例 #3
0
ファイル: Team.cs プロジェクト: FlintShi/FootballGame
 //Function to play
 public void PlayGame()
 {  //Print the team//s name
     System.Console.WriteLine(teamName);
     //Play according to the strategy
     strategy.Play();
 }