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