MovementDirection.cs 320 B

12345678910111213141516
  1. /*
  2. * FancyScrollView (https://github.com/setchi/FancyScrollView)
  3. * Copyright (c) 2020 setchi
  4. * Licensed under MIT (https://github.com/setchi/FancyScrollView/blob/master/LICENSE)
  5. */
  6. namespace FancyScrollView
  7. {
  8. public enum MovementDirection
  9. {
  10. Left,
  11. Right,
  12. Up,
  13. Down,
  14. }
  15. }