mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
a9892203c7
extract pkm loading routines to smaller methods reduce code duplication (rely on empty setters to ignore some calls) should be much easier to understand the load/save process; the original setup (pk6) was following the structure from 0x00-end, no point still doing that as everything is now abstracted.
8 lines
No EOL
142 B
C#
8 lines
No EOL
142 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IShadowPKM
|
|
{
|
|
int ShadowID { get; set; }
|
|
int Purification { get; set; }
|
|
}
|
|
} |