mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
12 lines
262 B
C#
12 lines
262 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|