mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
f60926d200
future implementation
13 lines
No EOL
371 B
C#
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) { }
|
|
}
|
|
} |