using UnityEngine; namespace TyphoonUI { /// /// 元素坐标信息 /// public class ScrollCellPositionInfo { public Vector2 ContentPositionRange { get; set; } //内容框坐标范围大小 public Vector3 LocalPosition { get; set; } //本地坐标 } }