mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-01 03:12:23 -05: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,
|
|
}
|
|
}
|