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