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