public static void Printinfo(ref Player i_PlayerOne, ref Player i_PlayerTwo) { Console.WriteLine("{0}'s score is:{1}", i_PlayerOne.name, i_PlayerOne.score); Console.WriteLine("{0}'s score is:{1}", i_PlayerTwo.name, i_PlayerTwo.score); MatchingGameExe.GameOver(); }
public static void Main() { MatchingGameExe.Run(); }