mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 22:29:52 -05:00
9 lines
248 B
C#
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;
|
|
}
|
|
} |