Files @ f2fafa9734f5
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/StatusUpdateEventArgs.cs

jmaltzen
Update code to detect paint swatch - increase the range allowed for papyrus, but by more detailed in looking for the top/left border of the swatch.
using System;

namespace DesertPaintLab
{
    public class StatusUpdateEventArgs : System.EventArgs
    {
        public string Status { get; private set; }
        public StatusUpdateEventArgs(string status)
        {
            Status = status;
        }
    }
}