PKHeX/PKHeX.Core/PKM/Shared/IGigantamax.cs

12 lines
201 B
C#
Raw Normal View History

2019-11-16 01:34:18 +00:00
namespace PKHeX.Core
{
public interface IGigantamax
{
bool CanGigantamax { get; set; }
}
public interface IDynamaxLevel
{
byte DynamaxLevel { get; set; }
}
}