PKHeX/PKHeX.Core/Ribbons/IRibbonIndex.cs

13 lines
356 B
C#
Raw Normal View History

2019-11-16 01:34:18 +00:00
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);
}
}