Beispiel #1
0
 static void Main(string[] args)
 {
     var conf = new GameConfiguration {
         Width = 1280,
         Height = 720,
         WindowTitle = "nginz Game",
         FixedWindow = false,
         Vsync = VsyncMode.Off,
         FixedFramerate = false,
         TargetFramerate = 60,
         ContentRoot = "../../assets",
     };
     var game = new TestGame (conf);
     game.Run ();
 }