mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-18 23:17:41 +08:00
21 lines
432 B
C#
21 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityEngine;
|
|
|
|
namespace UnityExplorer.UI.Widgets
|
|
{
|
|
public interface IPoolDataSource
|
|
{
|
|
int ItemCount { get; }
|
|
|
|
void SetCell(ICell cell, int index);
|
|
void DisableCell(ICell cell, int index);
|
|
|
|
int GetRealIndexOfTempIndex(int tempIndex);
|
|
|
|
ICell CreateCell(RectTransform cellTransform);
|
|
}
|
|
}
|