Tag Visualisation Control Sound (Use Byte Value "01") and Mute all other Players opened
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,
}
}