10 lines
187 B
C#
10 lines
187 B
C#
|
|
using UnityEngine;
|
|||
|
|
using System.Collections;
|
|||
|
|
|
|||
|
|
namespace UnityEngine.UI
|
|||
|
|
{
|
|||
|
|
public interface LoopScrollDataSource
|
|||
|
|
{
|
|||
|
|
void ProvideData(Transform transform, int idx);
|
|||
|
|
}
|
|||
|
|
}
|