mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
6f7602f2ad
Extract get/set team methods for battle video
11 lines
No EOL
323 B
C#
11 lines
No EOL
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) { }
|
|
}
|
|
} |