mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-07 00:37:34 +00:00
13 lines
No EOL
375 B
C#
13 lines
No EOL
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) { }
|
|
}
|
|
} |