PKHeX/PKHeX.Core/Editing/Saves/Slots/StorageSlotOffset.cs
Kurt 164a26e757 Misc reorg + skeleton for slot editor
SlotChangeManager is pretty glue-y, might eventually shift to this
implementation
2018-09-21 21:20:28 -07:00

9 lines
248 B
C#

namespace PKHeX.Core
{
public class StorageSlotOffset
{
public int Offset { get; set; } = -1;
public bool IsPartyFormat { get; set; } = false;
public StorageSlotType Type { get; set; } = StorageSlotType.Misc;
}
}