mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-27 13:32:49 -05:00
13 lines
356 B
C#
13 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);
|
|
}
|
|
}
|