mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
0b32cbf132
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>
12 lines
265 B
C#
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; }
|
|
}
|