PKHeX/PKHeX.Core/Legality/Structures/IFixedBall.cs
2022-08-21 01:39:16 -07:00

13 lines
404 B
C#

namespace PKHeX.Core;
/// <summary>
/// Exposes details about an encounter with a specific ball ID required.
/// </summary>
public interface IFixedBall
{
/// <summary>
/// Specific ball ID that is required from this object.
/// </summary>
/// <remarks>If <see cref="Ball.None"/>, no specific ball is required (must be one of the permitted balls).</remarks>
Ball FixedBall { get; }
}