Ejemplo n.º 1
0
 public MainWindow()
 {
     InitializeComponent();
     GameController = new Controller.GameController(this);
     GameController.SetupGame();
     GameController.StartGame();
 }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            MainWindow window = new MainWindow();

            window.Show();
            Controller.GameController gc = new Controller.GameController(window);
            gc.StartGame();
        }