DetectionResult.cs 424 B

1234567891011121314151617
  1. using RootSystem = System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Windows.Kinect
  5. {
  6. //
  7. // Windows.Kinect.DetectionResult
  8. //
  9. public enum DetectionResult : int
  10. {
  11. Unknown =0,
  12. No =1,
  13. Maybe =2,
  14. Yes =3,
  15. }
  16. }