PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/RotateDirection.cs
2018-08-18 20:10:34 -07:00

13 lines
183 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PKHeX.Core
{
public enum RotateDirection
{
None,
Right,
Left,
}
}