PKHeX/PKHeX.Core/Saves/Substructures/Inventory/IItemFreeSpaceIndex.cs
2022-03-15 19:23:03 -07:00

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; }
}