namespace PKHeX.Core;
///
/// Style to display stat names.
///
public enum StatDisplayStyle : sbyte
{
Custom = -1,
///
/// Stat names are displayed in abbreviated (2-3 characters) localized text.
///
Abbreviated,
///
/// Stat names are displayed in full localized text.
///
Full,
///
/// Stat names are displayed as a single character.
///
///
/// This is the typical format used by the Japanese community; HABCDS.
///
HABCDS,
///
/// Stat names are displayed without localization; X/X/X/X/X/X
///
Raw,
///
/// Stat names are displayed without localization; XX/XX/XX/XX/XX/XX
///
Raw00,
}