예제 #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (TestGame game = new TestGame())
     {
         game.Run();
     }
 }
예제 #2
0
        static void Main()
        {
            //SetUnmanagedDllDirectory();



            GameConfiguration config = new GameConfiguration();

            config.FPSTarget = 60;
            config.FixedFPS  = false;
            config.Resizable = true;
            config.VSync     = VSyncMode.Off;

            TestGame game = new TestGame(config);

            game.Run();
        }
예제 #3
0
파일: Program.cs 프로젝트: VilRan/Legatus
 static void Main()
 {
     using (var game = new TestGame())
         game.Run();
 }