mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
9b178fefe2
Move form-info logic from FormConverter to AltFormInfo; now FormConverter is entirely form=>string[] Add a bunch of xmldoc Make pogo no-end-date cmp agaisnt UTCnow rather than local now.
16 lines
517 B
C#
16 lines
517 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>
|
|
int SlotNumber { get; }
|
|
}
|
|
}
|