mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-18 15:07:49 +08:00
15 lines
270 B
C#
15 lines
270 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UnityExplorer.UI.Widgets.InfiniteScroll
|
|||
|
{
|
|||
|
public interface IListDataSource
|
|||
|
{
|
|||
|
int ItemCount { get; }
|
|||
|
|
|||
|
void SetCell(ICell cell, int index);
|
|||
|
}
|
|||
|
}
|