mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
b20566eb59
Some interfaces aren't needed to be exposed as int
14 lines
396 B
C#
14 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; }
|
|
}
|
|
}
|