예제 #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();
 }