PKHeX/PKHeX.Core/PKM/Interfaces/IGigantamax.cs

13 lines
348 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes an indication if the Pokémon can Gigantamax.
/// </summary>
public interface IGigantamax : IGigantamaxReadOnly
2019-11-16 01:34:18 +00:00
{
2020-06-22 00:46:06 +00:00
/// <summary>
/// Indicates if the Pokémon is capable of Gigantamax as opposed to regular Dynamax.
2020-06-22 00:46:06 +00:00
/// </summary>
new bool CanGigantamax { get; set; }
}