using UnityEngine; namespace TyphoonUI { /// /// 滚动元素数据 /// public struct ScrollCellInfo { public Vector2 CellSize { get; set; } //元素大小 public string CellName { get; set; } //元素名 } }