mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
16 lines
257 B
C#
16 lines
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; }
|
|
}
|
|
} |