mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
15 lines
396 B
C#
15 lines
396 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 2 met data interface for details introduced by <see cref="GameVersion.C"/>
|
|
/// </summary>
|
|
public interface ICaughtData2
|
|
{
|
|
ushort CaughtData { get; set; }
|
|
int Met_TimeOfDay { get; set; }
|
|
int Met_Level { get; set; }
|
|
int OT_Gender { get; set; }
|
|
int Met_Location { get; set; }
|
|
}
|
|
}
|