mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
10 lines
240 B
C#
10 lines
240 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Exposes simple encounter info and can be converted to a <see cref="PKM"/>.
|
|||
|
/// </summary>
|
|||
|
public interface IEncounterInfo : IEncounterTemplate, IEncounterConvertible
|
|||
|
{
|
|||
|
}
|
|||
|
}
|