PKHeX/PKHeX.Core/Editing/Saves/SlotView/SlotBoxes.cs
Kurt f60926d200 Add slotview stuff
future implementation
2019-01-12 20:53:50 -08:00

13 lines
No EOL
371 B
C#

namespace PKHeX.Core
{
public class SlotBoxes : SlotView
{
public SlotBoxes(SaveFile sav)
: base(sav, sav.SlotCount, false) { }
protected override int GetOffset(int index) => SAV.GetBoxSlotOffset(index);
protected override void ShiftDown(int startIndex) { }
protected override void ShiftUp(int startIndex) { }
}
}