mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 12:15:11 +00:00
16 lines
No EOL
455 B
C#
16 lines
No EOL
455 B
C#
/// Credit setchi (https://github.com/setchi)
|
|
/// Sourced from - https://github.com/setchi/FancyScrollView
|
|
|
|
using System;
|
|
|
|
namespace UnityEngine.UI.Extensions
|
|
{
|
|
/// <summary>
|
|
/// <see cref="FancyCellGroup{TItemData, TContext}"/> のコンテキストインターフェース.
|
|
/// </summary>
|
|
public interface IFancyCellGroupContext
|
|
{
|
|
GameObject CellTemplate { get; set; }
|
|
Func<int> GetGroupCount { get; set; }
|
|
}
|
|
} |