예제 #1
0
파일: Program.cs 프로젝트: kevinkl/SPIELE2
        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);
 }