mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
12 lines
356 B
C#
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);
|
|
}
|
|
}
|