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

8 lines
176 B
C#

namespace PKHeX.Core;
public interface IItemNew
{
/// <summary> Indicates if the item is "NEW"ly obtained and not yet viewed. </summary>
bool IsNew { get; set; }
}