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