hellbound/Assets/Sources/unity-ui-extensions-master/Scripts/Layout/IScrollSnap.cs

15 lines
315 B
C#
Raw Normal View History

2021-11-26 11:16:25 +03:00
/// Credit SimonDarksideJ
/// Required for scrollbar support to work across ALL scroll snaps
namespace UnityEngine.UI.Extensions
{
internal interface IScrollSnap
{
void ChangePage(int page);
void SetLerp(bool value);
int CurrentPage();
void StartScreenChange();
}
}