mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
13 lines
375 B
C#
13 lines
375 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace PKHeX.Core
|
||
|
{
|
||
|
public class SlotArray : SlotList
|
||
|
{
|
||
|
public SlotArray(SaveFile sav, IReadOnlyList<StorageSlotOffset> slots, bool isReadOnly)
|
||
|
: base(sav, slots, isReadOnly) { }
|
||
|
|
||
|
protected override void ShiftDown(int startIndex) { }
|
||
|
protected override void ShiftUp(int startIndex) { }
|
||
|
}
|
||
|
}
|