mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
13 lines
404 B
C#
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; }
|
|
}
|