Files @ 5e28ba3945f7
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Services/SettingKey.cs - annotation

Jason Maltzen
Recipe count is now a ulong instead of an int so it can show values > 2.47 billion. Also, don't allow clearing the recipe list while the recipe generator is running.
namespace DesertPaintCodex.Services
{
    public static class SettingKey
    {
        public const string PixelMultiplier = "pixelmultiplier";
        public const string ScreenIndex     = "screenindex";
        public const string ScreenX         = "screenx";
        public const string ScreenY         = "screeny";
        public const string ScreenWidth     = "screenwidth";
        public const string ScreenHeight    = "screenheight";
    }
}