mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
e1414a0bea
No code changes
13 lines
349 B
C#
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; }
|
|
}
|
|
}
|