PKHeX/PKHeX.Core/PKM/IShadowPKM.cs
Kurt a9892203c7 Refactoring
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.
2017-10-02 23:13:40 -07:00

8 lines
No EOL
142 B
C#

namespace PKHeX.Core
{
public interface IShadowPKM
{
int ShadowID { get; set; }
int Purification { get; set; }
}
}