public Game(string gameName,int numPlayers,bool isWater)
this.numPlayers=numPlayers;
private string countryName;
public Country(string countryName,Game[] games)
this.countryName=countryName;
public bool IsParticipating(Game who)
for(int i=0;i<this.games.Length;i++)
public static void Main()
Console.WriteLine("Hello World");