com.unity.uiextensions.nosa.../Scripts/Layout/FancyScrollView/ScrollRect/IFancyScrollRectContext.cs

13 lines
309 B
C#
Raw Normal View History

2019-11-16 22:49:21 +08:00
/// Credit setchi (https://github.com/setchi)
/// Sourced from - https://github.com/setchi/FancyScrollView
using System;
namespace UnityEngine.UI.Extensions
{
public interface IFancyScrollRectContext
{
Func<(float ScrollSize, float ReuseMargin)> CalculateScrollSize { get; set; }
}
}