Files
aibis-dream/Assets/Plugins/LoopScrollRect/Runtime/ILoopScrollPrefabSource.cs
T
2025-09-16 17:13:21 +08:00

13 lines
220 B
C#

using UnityEngine;
using System.Collections;
namespace AibisDream.UI
{
public interface ILoopScrollPrefabSource
{
GameObject GetObject(int index);
void ReturnObject(Transform trans);
}
}