Files @ 365cbd130bf2
Branch filter:

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

Malkyne
Now correctly clearing buffer reagent selections when doing a test Clear.
Also, marking inert now immediately saves, because a verification step
is not necessary or useful, in this case.

using System;

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