Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            UI    ui             = new UI();
            Spiel spiel          = new Spiel();
            var   schiedsrichter = new Schiedsrichter();
            var   ttt            = new TicTacToe(spiel, schiedsrichter);
            var   app            = new App(ttt, ui);

            app.Run();
        }
Ejemplo n.º 2
0
 public App(TicTacToe ttt, UI ui)
 {
     _ttt = ttt;
     _ui  = ui;
 }