PKHeX/PKHeX.Core/Ribbons/IRibbonIndex.cs
2019-11-15 17:52:08 -08:00

12 lines
356 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Provides access for reading and writing ribbon states by ribbon index within the <see cref="PKM"/> structure.
/// </summary>
public interface IRibbonIndex
{
bool GetRibbon(int index);
void SetRibbon(int index, bool value = true);
int GetRibbonByte(int index);
}
}