PKHeX/PKHeX.Core/Legality/Encounters/IEncounterInfo.cs
2021-02-24 18:08:03 -08:00

10 lines
358 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Exposes simple encounter info and can be converted to a <see cref="PKM"/>.
/// </summary>
/// <remarks>Combined interface used to require multiple interfaces being present for a calling method.</remarks>
public interface IEncounterInfo : IEncounterTemplate, IEncounterConvertible
{
}
}