summaryrefslogtreecommitdiff
path: root/Assets/uGUI-2017.1/UnityEngine.UI/EventSystem/EventHandler/MoveDirection.cs
blob: 4f4147c86af12365483a1fa576153e2a63684840 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace UnityEngine.EventSystems
{
    public enum MoveDirection
    {
        Left,
        Up,
        Right,
        Down,
        None
    }
}