#if UNITY_2019_4_OR_NEWER namespace YooAsset.Editor { public interface ITableCell { /// /// 单元格数值 /// object CellValue { set; get; } /// /// 获取界面显示对象 /// object GetDisplayObject(); } } #endif