ScrollDirection.cs 301 B

1234567891011121314
  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 ScrollDirection
  9. {
  10. Vertical,
  11. Horizontal,
  12. }
  13. }