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

            ticTacToePresenter.RunApp();
        }
示例#2
0
 public void Run()
 {
     _presenter.RunApp();
 }