PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs

17 lines
258 B
C#
Raw Normal View History

2018-12-19 01:15:35 +00:00
namespace PKHeX.Core
{
public interface IPokePuff
{
Puff6 PuffBlock { get; }
}
public interface IOPower
{
OPower6 OPowerBlock { get; }
}
public interface ILink
{
byte[] LinkBlock { get; set; }
2018-12-19 01:15:35 +00:00
}
}