Files @ 532e5f429c0f
Branch filter:

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

Malkyne
DPL should no longer scan entire screenshot, when the Pigment Lab dialog
has already been found, unless it has been moved.
using System;

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