mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 23:06:58 -05:00
13 lines
371 B
C#
13 lines
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) { }
|
|
}
|
|
} |