14 lines
159 B
C#
14 lines
159 B
C#
|
using System;
|
||
|
namespace UnityEngine.UIElements.Expansions
|
||
|
{
|
||
|
public interface IPagination
|
||
|
{
|
||
|
int position
|
||
|
{
|
||
|
get;
|
||
|
}
|
||
|
void Next();
|
||
|
void Prev();
|
||
|
}
|
||
|
}
|