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