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

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