namespace PKHeX.Core;
///
/// Interface that exposes an indication if the Pokémon can Gigantamax.
///
public interface IGigantamax : IGigantamaxReadOnly
{
///
/// Indicates if the Pokémon is capable of Gigantamax as opposed to regular Dynamax.
///
new bool CanGigantamax { get; set; }
}