星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. namespace ComeCapture.Models
  2. {
  3. public enum Direction
  4. {
  5. Null = 0,
  6. Move = 1,
  7. LeftTop = 2,
  8. LeftMiddle = 3,
  9. LeftBottom = 4,
  10. MiddleTop = 5,
  11. MiddleBottom = 6,
  12. RightTop = 7,
  13. RightMiddle = 8,
  14. RightBottom = 9
  15. }
  16. }