LoopScrollSizeHelper.cs 226 B

1234567891011
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace UnityEngine.UI
  4. {
  5. // optional class for better scroll support
  6. public interface LoopScrollSizeHelper
  7. {
  8. Vector2 GetItemsSize(int itemsCount);
  9. }
  10. }