Activity.cs 463 B

123456789101112131415161718
  1. using RootSystem = System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Windows.Kinect
  5. {
  6. //
  7. // Windows.Kinect.Activity
  8. //
  9. public enum Activity : int
  10. {
  11. EyeLeftClosed =0,
  12. EyeRightClosed =1,
  13. MouthOpen =2,
  14. MouthMoved =3,
  15. LookingAway =4,
  16. }
  17. }