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