PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs
Kurt 4baf745af8 Use some c#8 sugar
static local functions
switch expressions
using usings :)

nullable next?
2019-10-07 18:40:09 -07:00

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; }
}
}