private bool AmIWon(GameLogic ex) { if (me == CellE.o) { return(ex.IsOWon()); } return(ex.IsXWon()); }
private bool DoHimWon(GameLogic ex) { if (me == CellE.x) { return(ex.IsOWon()); } return(ex.IsXWon()); }