mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00: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; }
|
|||
|
}
|
|||
|
}
|