mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
8 lines
212 B
C#
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; }
|
|
}
|