Example #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            GameController gameController = new GameController();

        }
Example #2
0
 static void Main(string[] args)
 {
     // Initialize game controller and start a game
     GameController game = new GameController();
     game.initGame();
 }