PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs
Kurt 1b028198ad
Split gen5-7 saves with inheritance (#2319)
refer to pull request comments for summary
2019-06-08 19:56:11 -07:00

16 lines
No EOL
257 B
C#

namespace PKHeX.Core
{
public interface IPokePuff
{
Puff6 PuffBlock { get; }
}
public interface IOPower
{
OPower6 OPowerBlock { get; }
}
public interface ILink
{
byte[] LinkBlock { get; set; }
}
}