Example #1
0
        public Game CreateGame()
        {
            Player one = new Player("Josh");
            Player two = new Player("Kayla");

            return new Game(one, two);
        }
Example #2
0
 public Game(Player x, Player o)
 {
     this.PlayerX = x;
     this.PlayerO = o;
 }