namespace PKHeX.Core { /// /// that contains information about what Index it is within the 's type-group of slots. /// /// /// Useful for checking legality (if the RNG can yield this slot). /// public interface INumberedSlot { /// /// Number Index of the . /// int SlotNumber { get; } } }