PKHeX/PKHeX.Core/PKM/Interfaces/IGroundTile.cs

13 lines
307 B
C#
Raw Normal View History

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; }
}