PKHeX/PKHeX.Core/Legality/Structures/IFixedBall.cs

14 lines
404 B
C#
Raw Normal View History

2022-08-21 08:39:16 +00:00
namespace PKHeX.Core;
2022-08-21 08:39:16 +00:00
/// <summary>
/// Exposes details about an encounter with a specific ball ID required.
/// </summary>
public interface IFixedBall
{
2022-08-21 08:39:16 +00:00
/// <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; }
}