PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/RotateDirection.cs

14 lines
183 B
C#
Raw Normal View History

2018-08-19 03:10:30 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace PKHeX.Core
{
public enum RotateDirection
{
None,
Right,
Left,
}
}