PKHeX/PKHeX.Core/PKM/Shared/IGigantamax.cs
2019-11-15 17:52:08 -08:00

12 lines
No EOL
201 B
C#

namespace PKHeX.Core
{
public interface IGigantamax
{
bool CanGigantamax { get; set; }
}
public interface IDynamaxLevel
{
byte DynamaxLevel { get; set; }
}
}