mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
1b028198ad
refer to pull request comments for summary
16 lines
No EOL
257 B
C#
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; }
|
|
}
|
|
} |