Esempio n. 1
0
        public static void Main()
        {
            var app = new MyApplication();

            app.Run();
        }
Esempio n. 2
0
 public static void Main()
 {
     var app = new MyApplication();
     app.gameWindow.Run();
 }
Esempio n. 3
0
 public static void Main()
 {
     var app = new MyApplication();
     //run the update loop, which calls our registered callbacks
     app.gameWindow.Run();
 }
Esempio n. 4
0
 public static void Main()
 {
     var app = new MyApplication();
     app.Run();
 }
Esempio n. 5
0
 public static void Main()
 {
     MyApplication app = new MyApplication();
     app.gameWindow.Run(60.0);
 }