13 lines
220 B
C#
13 lines
220 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace UnityEngine.UI
|
|
{
|
|
public interface LoopScrollPrefabSource
|
|
{
|
|
GameObject GetObject(int index);
|
|
|
|
void ReturnObject(Transform trans);
|
|
}
|
|
}
|