mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 20:25:11 +00:00
15 lines
315 B
C#
15 lines
315 B
C#
|
/// 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();
|
|||
|
}
|
|||
|
}
|