mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00: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) { }
|
||
|
}
|
||
|
}
|