PKHeX/PKHeX.WinForms/Controls/Slots/SlotTrackerImage.cs
Kurt cce4707604
Enable nullable for winforms csproj (#3037)
Handle all warnings
obviously the usage of null! could potentially be avoided if the object init wasn't such garbage, but here we are with years of old junk and lack of abstraction in the GUI project
2020-10-18 11:02:39 -07:00

15 lines
No EOL
333 B
C#

using System.Drawing;
namespace PKHeX.WinForms.Controls
{
public sealed class SlotTrackerImage
{
public Image? OriginalBackground { get; set; }
public Image? CurrentBackground { get; set; }
public void Reset()
{
OriginalBackground = CurrentBackground = null;
}
}
}