PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs
2018-12-18 17:15:35 -08:00

9 lines
No EOL
172 B
C#

namespace PKHeX.Core
{
public interface IPokePuff
{
bool HasPuffData { get; }
byte[] Puffs { get; set; }
int PuffCount { get; set; }
}
}