mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00: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);
|
|||
|
}
|
|||
|
}
|