mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-13 23:50:25 -05:00
8 lines
201 B
C#
8 lines
201 B
C#
namespace PKHeX.Core
|
|
{
|
|
public abstract class MyItem : SaveBlock
|
|
{
|
|
public abstract InventoryPouch[] Inventory { get; set; }
|
|
protected MyItem(SaveFile SAV) : base(SAV) { }
|
|
}
|
|
} |