EnergyEfficiencyManagement/Assets/ZCalendar/LoopScrollRect-master/Runtime/LoopScrollSizeHelper.cs

12 lines
226 B
C#

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