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