namespace PKHeX.Core
{
///
/// Alternate form data has an associated value.
///
///
/// How long (days) the form can last before reverting to AltForm-0 (5 days max)
/// : How long (days) the form can last before reverting to AltForm-0 (3 days max)
/// : Topping (Strawberry, Star, etc); [0,7]
///
public interface IFormArgument
{
///
/// Argument for the associated
///
uint FormArgument { get; set; }
}
}