soundvision/UnityProject/Assets/ThridParty/Windows/Kinect/HandState.cs
2019-07-06 14:50:40 +02:00

18 lines
465 B
C#

using RootSystem = System;
using System.Linq;
using System.Collections.Generic;
namespace Windows.Kinect
{
//
// Windows.Kinect.HandState
//
public enum HandState : int
{
Unknown =0,
NotTracked =1,
Open =2,
Closed =3,
Lasso =4,
}
}