Files @ d16a2d816aa5
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Models/ClipType.cs

Jason Maltzen
Don't open the recipe generator log file on view creation - only open it if configured when starting recipe generation. Fixes a crash when importing reaction data / profile data.

using System;

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