mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
14 lines
393 B
C#
14 lines
393 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 2 met data interface for details introduced by <see cref="GameVersion.C"/>
|
|
/// </summary>
|
|
public interface ICaughtData2
|
|
{
|
|
int CaughtData { get; set; }
|
|
int Met_TimeOfDay { get; set; }
|
|
int Met_Level { get; set; }
|
|
int OT_Gender { get; set; }
|
|
int Met_Location { get; set; }
|
|
}
|
|
}
|