HandState.cs 465 B

123456789101112131415161718
  1. using RootSystem = System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Windows.Kinect
  5. {
  6. //
  7. // Windows.Kinect.HandState
  8. //
  9. public enum HandState : int
  10. {
  11. Unknown =0,
  12. NotTracked =1,
  13. Open =2,
  14. Closed =3,
  15. Lasso =4,
  16. }
  17. }