Files @ 6a6817b17a06
Branch filter:

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

Jason Maltzen
Simulator view updates: new warning when the recipe is below minimum concentration. Add the missing reactions to the warning about missing reactions. Show the current saved recipe for a color, and allow replacing/saving the current simulated recipe as the recipe for that color.

using System;

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