/// Credit setchi (https://github.com/setchi)
/// Sourced from - https://github.com/setchi/FancyScrollView
using System;
namespace UnityEngine.UI.Extensions
{
///
/// のコンテキストインターフェース.
///
public interface IFancyGridViewContext : IFancyScrollRectContext, IFancyCellGroupContext
{
Func GetStartAxisSpacing { get; set; }
Func GetCellSize { get; set ; }
}
}