PKHeX/PKHeX.Core/PKM/Interfaces/IGroundTile.cs
2022-03-06 12:06:50 -08:00

13 lines
349 B
C#

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