コード例 #1
0
ファイル: Program.cs プロジェクト: gryxon/TicTacToe
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            GameController gameController = new GameController();

        }
コード例 #2
0
ファイル: Program.cs プロジェクト: jayden/TicTacToe
 static void Main(string[] args)
 {
     // Initialize game controller and start a game
     GameController game = new GameController();
     game.initGame();
 }