mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-17 10:03:58 -05:00
11 lines
323 B
C#
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) { }
|
|
}
|
|
} |