private static void Main(string[] args)
        {
            using (var game = new XenkoTerrainGame())
            {
                if (new WindowResolutionLookup().TryDetermineMaximumResolution(out var width, out var height))
                {
                    game.Services.AddService(new CustomGraphicsSettings(game, width, height));
                }

                game.Services.AddService(new SaveTerrainService());
                game.Run();
            }
        }
Esempio n. 2
0
 public CustomGraphicsSettings(XenkoTerrainGame game, int?maxScreenWidth, int?maxScreenHeight)
 {
     Game = game;
     PrimaryScreenWidth  = maxScreenWidth;
     PrimaryScreenHeight = maxScreenHeight;
 }