using UnityEngine; namespace TyphoonUI { /// /// 滚动元素数据项 /// public interface IScrollCellData { public Vector2 CellSize { get; set; } //元素大小(x:width,y:height) public string CellName { get; set; } //池对象名 } }