namespace PKHeX.Core { /// /// Simple identification values for an Pokémon Entity. /// public interface ISpeciesForm { /// Species ID of the entity (National Dex). int Species { get; } /// Form ID of the entity. int Form { get; } } }