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