PKHeX/PKHeX.WinForms/Controls/SAV Editor/SlotIndex.cs
Kurt c5ebbbbe15 Minor clean
Magic number -> const usage
default(T) -> default (c#7.x feature)
remove some unused stuff
fix indentation in some spots
2019-09-10 22:07:50 -07:00

10 lines
145 B
C#

namespace PKHeX.WinForms.Controls
{
internal enum SlotIndex
{
Party = 0,
BattleBox = 6,
Daycare = 12,
}
}