示例#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();
 }