mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
9 lines
No EOL
172 B
C#
9 lines
No EOL
172 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IPokePuff
|
|
{
|
|
bool HasPuffData { get; }
|
|
byte[] Puffs { get; set; }
|
|
int PuffCount { get; set; }
|
|
}
|
|
} |