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

8 lines
212 B
C#

namespace PKHeX.Core;
public interface IItemFreeSpace
{
/// <summary> Indicates if the item should be shown in the Free Space pouch instead (Generation 5). </summary>
bool IsFreeSpace { get; set; }
}