Files @ 5d24ae1f226c
Branch filter:

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

Jason Maltzen
Replace Earth Light with Falcon's Bait. Assuming the same color profile unless we learn otherwise.
using System;

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