namespace PKHeX.Core { /// /// Indicates the Type of Encounter Tile the Pokémon was encountered on. /// public interface IGroundTile { /// /// Type of Encounter Tile the Pokémon was encountered on. /// GroundTileType GroundTile { get; set; } } }