PKHeX/PKHeX.Core/Ribbons/IRibbonSetAffixed.cs
Kurt 0b32cbf132 Update PKHeX.Core abstractions with latest logic
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com>
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
2022-02-04 17:35:15 -08:00

12 lines
265 B
C#

namespace PKHeX.Core;
/// <summary>
/// Specifies that a single ribbon index is prominently selected.
/// </summary>
/// <remarks>
/// <see cref="RibbonIndex"/> values.
/// </remarks>
public interface IRibbonSetAffixed
{
sbyte AffixedRibbon { get; set; }
}