Files @ 4778889395e8
Branch filter:

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

Jason Maltzen
Change the displayed permeutation count to display using locale-specific number formatting (with comma / dot separators). Fix a crash when starting a new round of recipe generation after recipe generation completed during a previous run.
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";
    }
}