예제 #1
0
        static void Main()
        {
            TicTacToeForm      ticTacToe          = new TicTacToeForm();
            TicTacToePresenter ticTacToePresenter = new TicTacToePresenter(ticTacToe);

            ticTacToePresenter.RunApp();
        }
예제 #2
0
 public void Run()
 {
     _presenter.RunApp();
 }