PKHeX/PKHeX.Core/PKM/Shared/ICaughtData2.cs
Kurt b20566eb59 Use actual primitive instead of int
Some interfaces aren't needed to be exposed as int
2022-03-05 18:30:35 -08:00

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; }
}
}