mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
52c4fbbe97
Refactored and rearranged things as needed to allow the change
11 lines
229 B
C#
11 lines
229 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IEncounterable
|
|
{
|
|
int Species { get; }
|
|
string Name { get; }
|
|
bool EggEncounter { get; }
|
|
int LevelMin { get; }
|
|
int LevelMax { get; }
|
|
}
|
|
}
|