mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
4baf745af8
static local functions switch expressions using usings :) nullable next?
17 lines
No EOL
258 B
C#
17 lines
No EOL
258 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IPokePuff
|
|
{
|
|
Puff6 PuffBlock { get; }
|
|
}
|
|
|
|
public interface IOPower
|
|
{
|
|
OPower6 OPowerBlock { get; }
|
|
}
|
|
|
|
public interface ILink
|
|
{
|
|
byte[] LinkBlock { get; set; }
|
|
}
|
|
} |