PKHeX/PKHeX.WinForms/Controls/SAV Editor/SlotTrackerImage.cs
Kurt b81a1e1e29 Refactoring
Increase abstraction for arbitrary slot get/set operations, and fracture
SAV4 behavior for each game type.

Adds: Undo/Redo of party slot changes
Fixes: Fixed Gen5 daycare slot 2 reading, and EXP reading
Fixes: Some slot color glitchiness
Fixed: Box layout editor now hides the flag label if no flags are
present
Fixed: Gen7 box flags are now shown (unknown purpose lol)
Changed: savefile objects are generally smaller (removed a few shared
offset fields)
2019-09-02 19:30:58 -07:00

15 lines
No EOL
324 B
C#

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