PKHeX/PKHeX.Core/Editing/Saves/SlotView/SlotBoxes.cs

13 lines
371 B
C#
Raw Normal View History

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) { }
}
}