PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs

9 lines
172 B
C#
Raw Normal View History

2018-12-19 01:15:35 +00:00
namespace PKHeX.Core
{
public interface IPokePuff
{
bool HasPuffData { get; }
byte[] Puffs { get; set; }
int PuffCount { get; set; }
}
}