2022-08-21 08:39:16 +00:00
|
|
|
namespace PKHeX.Core;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
2022-08-21 08:39:16 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Exposes details about an encounter with a specific ball ID required.
|
|
|
|
/// </summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
public interface IFixedBall
|
2021-08-24 21:03:20 +00:00
|
|
|
{
|
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>
|
2022-06-18 18:04:24 +00:00
|
|
|
Ball FixedBall { get; }
|
2021-08-24 21:03:20 +00:00
|
|
|
}
|