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