2020-08-21 23:35:49 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2020-11-27 19:51:02 +00:00
|
|
|
|
/// <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>
|
2020-08-21 23:35:49 +00:00
|
|
|
|
public interface INumberedSlot
|
|
|
|
|
{
|
2020-11-27 19:51:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number Index of the <seealso cref="EncounterSlot"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
int SlotNumber { get; }
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|