Context.cs 402 B

1234567891011121314151617
  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. using System;
  7. namespace FancyScrollView.FocusOn
  8. {
  9. class Context
  10. {
  11. public int ScrollSelectedIndex = 0;
  12. public int SelectedIndex = -1;
  13. public Action<int,bool> OnCellClicked;
  14. }
  15. }