Change file and event names for code to be clearer and more coherent with the project and cuttings organisation
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GestureControl
{
/// <summary>
/// Possible Gesture Vector
/// </summary>
public enum SurfaceGestureVectorDirection
{
UP,
DOWN,
LEFT,
RIGHT,
UPLEFT,
UPRIGHT,
DOWNLEFT,
DOWNRIGHT,
NONE,
TAP,
}
}