コード例 #1
0
 public MainWindow()
 {
     InitializeComponent();
     GameController = new Controller.GameController(this);
     GameController.SetupGame();
     GameController.StartGame();
 }
コード例 #2
0
ファイル: Launcher.cs プロジェクト: RikardLundberg/chess
        public static void Main(string[] args)
        {
            MainWindow window = new MainWindow();

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