Files
aibis-dream/Assets/Plugins/LoopScrollRect/Runtime/ILoopScrollSizeHelper.cs
T
2025-09-16 17:13:21 +08:00

11 lines
200 B
C#

using UnityEngine;
namespace AibisDream.UI
{
// optional class for better scroll support
public interface ILoopScrollSizeHelper
{
Vector2 GetItemsSize(int itemsCount);
}
}