Vsevolod Levitan пре 4 месеци
родитељ
комит
ffd67dc8f9
1 измењених фајлова са 0 додато и 7 уклоњено
  1. 0 7
      FourInARow/GameBoard.cs

+ 0 - 7
FourInARow/GameBoard.cs

@@ -53,13 +53,6 @@ public class GameBoard : ICloneable
         return true;
     }
 
-    public static Player Opposite(Player player) => player switch
-    {
-        Player.Human => Player.Computer,
-        Player.Computer => Player.Human,
-        _ => Player.None
-    };
-
     public Player? GetWinner()
     {
         if (!cacheInvalidated) return winnerCache;