PKHeX/PKHeX.Core/Saves/Substructures/Inventory/MyItem.cs
Kurt a681783f1a Extract interface for SaveBlock, allow strict
External users shouldn't be using SaveBlock
2022-04-15 11:45:04 -07:00

11 lines
333 B
C#

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