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