mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +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; }
|
|||
|
}
|
|||
|
}
|