PKHeX/PKHeX.Core/PKM/Shared/ICaughtData2.cs
Kurt 52a67f2425 Add Stadium2 Support
Introducing a new PKM format: SK2
Split ICaughtData2 off of PK2 so it can be shared with SK2 when type-checks occur
Add conversion for PK2<->SK2
Split the split-buffer handling for GBPKM to GBPKML (what a name), so that I can reuse shared accessor logic for SK2.
2020-10-02 18:08:40 -07:00

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