mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 14:14:57 -05:00
9 lines
275 B
C#
9 lines
275 B
C#
namespace PKHeX.Core
|
|
{
|
|
public abstract class MyItem : SaveBlock
|
|
{
|
|
public abstract InventoryPouch[] Inventory { get; set; }
|
|
protected MyItem(SaveFile SAV) : base(SAV) { }
|
|
protected MyItem(SaveFile SAV, byte[] data) : base(SAV, data) { }
|
|
}
|
|
} |