mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
13 lines
183 B
C#
13 lines
183 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public enum RotateDirection
|
|
{
|
|
None,
|
|
Right,
|
|
Left,
|
|
}
|
|
}
|