using System.Drawing;
namespace PKHeX.WinForms.Controls;
///
/// Tracks the background images for a slot, including the original and current backgrounds.
///
public sealed class SlotTrackerImage
{
///
/// Gets or sets the original background image of the slot.
///
public Image? OriginalBackground { get; set; }
///
/// Gets or sets the current background image of the slot.
///
public Image? CurrentBackground { get; set; }
///
/// Resets the background images to null.
///
public void Reset()
{
OriginalBackground = CurrentBackground = null;
}
}