Example #1
0
        public static void Main()
        {
            var app = new MyApplication();

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