mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
14 lines
349 B
C#
14 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; }
|
|
}
|
|
}
|