Files
SoulliesOfficial db4d131192 1
2025-06-06 10:14:55 -04:00

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();
}
}