mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-20 09:23:17 +00:00
12 lines
201 B
C#
12 lines
201 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IGigantamax
|
|||
|
{
|
|||
|
bool CanGigantamax { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public interface IDynamaxLevel
|
|||
|
{
|
|||
|
byte DynamaxLevel { get; set; }
|
|||
|
}
|
|||
|
}
|