Files @ 4778889395e8
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Models/ClipType.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.

using System;

namespace DesertPaintCodex.Models
{
    [Flags]
    public enum ClipType
    {
        None      = 0,
        RedLow    = 0x01,
        GreenLow  = 0x02,
        BlueLow   = 0x04,
        RedHigh   = 0x08,
        GreenHigh = 0x10,
        BlueHigh  = 0x20
    }
}