namespace PKHeX.Core;
///
/// Style to display moves.
///
public enum MoveDisplayStyle : byte
{
///
/// Moves are slots 1-4, with no empty slots, and correspond to the rectangular grid without empty spaces.
///
Fill,
///
/// Move slots are assigned to the directional pad, and unused directional slots are not displayed.
///
Directional,
}