mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
8 lines
220 B
C#
8 lines
220 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface IItemFreeSpaceIndex
|
|
{
|
|
/// <summary> Indicates if the item should be shown in the Free Space pouch instead (Generation 7). </summary>
|
|
uint FreeSpaceIndex { get; set; }
|
|
}
|