PKHeX/PKHeX.WinForms/Controls/SAV Editor/DropModifier.cs
Kurt bf6c25eca7 Break up SlotChangeManager logic
A little bit cleaner when the logic is separated
Keep an abstraction of BoxEdit to cache the current box contents.
Already fetched to show sprites; any future fetches (for preview text /
hover sprite) can reuse the already fetched pkm data.

Should probably rewrite this stuff completely, but effort better spent
elsewhere
2019-08-20 19:50:28 -07:00

9 lines
No EOL
129 B
C#

namespace PKHeX.WinForms.Controls
{
public enum DropModifier
{
None,
Overwrite,
Clone,
}
}