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