PKHeX/PKHeX.Core/Saves/Substructures/Inventory/MyItem.cs
2022-03-15 19:23:03 -07:00

11 lines
323 B
C#

using System.Collections.Generic;
namespace PKHeX.Core
{
public abstract class MyItem : SaveBlock
{
public abstract IReadOnlyList<InventoryPouch> Inventory { get; set; }
protected MyItem(SaveFile SAV) : base(SAV) { }
protected MyItem(SaveFile SAV, byte[] data) : base(SAV, data) { }
}
}