Пример #1
0
 private bool AmIWon(GameLogic ex)
 {
     if (me == CellE.o)
     {
         return(ex.IsOWon());
     }
     return(ex.IsXWon());
 }
Пример #2
0
 private bool DoHimWon(GameLogic ex)
 {
     if (me == CellE.x)
     {
         return(ex.IsOWon());
     }
     return(ex.IsXWon());
 }