mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 22:44:25 -05:00
sealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealedsealed
15 lines
331 B
C#
15 lines
331 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;
|
|
}
|
|
}
|
|
} |