mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-08 02:28:47 +00:00
9 lines
129 B
C#
9 lines
129 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface ISpeciesForm
|
|||
|
{
|
|||
|
int Species { get; }
|
|||
|
int Form { get; }
|
|||
|
}
|
|||
|
}
|