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

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