mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
10 lines
358 B
C#
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
|
|
{
|
|
}
|
|
}
|