Files @ eee2a6a0c86b
Branch filter:

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

jmaltzen
Loosen checks on testing for papyrus texture some more. Allow for a bit of error there, as long as everything else checks out.
using System;

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