2018-12-18 17:15:35 -08:00
|
|
|
namespace PKHeX.Core
|
|
|
|
{
|
|
|
|
public interface IPokePuff
|
|
|
|
{
|
2019-06-08 19:56:11 -07:00
|
|
|
Puff6 PuffBlock { get; }
|
|
|
|
}
|
|
|
|
public interface IOPower
|
|
|
|
{
|
|
|
|
OPower6 OPowerBlock { get; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface ILink
|
|
|
|
{
|
|
|
|
byte[] LinkBlock { get; set; }
|
2018-12-18 17:15:35 -08:00
|
|
|
}
|
|
|
|
}
|