mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-21 13:26:42 -05:00
14 lines
524 B
C#
14 lines
524 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed record SlotInfoFile(string Path) : ISlotInfo
|
|
{
|
|
public SlotOrigin Origin => SlotOrigin.Party;
|
|
public int Slot => 0;
|
|
|
|
public bool CanWriteTo(SaveFile sav) => false;
|
|
public WriteBlockedMessage CanWriteTo(SaveFile sav, PKM pkm) => WriteBlockedMessage.InvalidDestination;
|
|
public bool WriteTo(SaveFile sav, PKM pkm, PKMImportSetting setting = PKMImportSetting.UseDefault) => false;
|
|
public PKM Read(SaveFile sav) => sav.BlankPKM;
|
|
}
|
|
}
|