mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
52a67f2425
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.
11 lines
262 B
C#
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; }
|
|
}
|
|
}
|