mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
462ef70ffb
more size reductions
15 lines
464 B
C#
15 lines
464 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// <seealso cref="EncounterSlot"/> that contains information about what Index it is within the <seealso cref="EncounterArea"/>'s type-group of slots.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Useful for checking legality (if the RNG can yield this slot).
|
|
/// </remarks>
|
|
public interface INumberedSlot
|
|
{
|
|
/// <summary>
|
|
/// Number Index of the <seealso cref="EncounterSlot"/>.
|
|
/// </summary>
|
|
byte SlotNumber { get; }
|
|
}
|