Esempio n. 1
0
 private void PrintCurrentScreen()
 {
     Ex02.ConsoleUtils.Screen.Clear();
     m_User1.Points = CountPoints(m_Board, m_User1.Symbol);
     m_User2.Points = CountPoints(m_Board, m_User2.Symbol);
     UI.PrintResult(m_User1.Points, m_User2.Points, m_User1, m_User2);
     UI.PrintBoard(m_Board);
 }