ITableCell.cs 340 B

123456789101112131415161718
  1. #if UNITY_2019_4_OR_NEWER
  2. namespace YooAsset.Editor
  3. {
  4. public interface ITableCell
  5. {
  6. /// <summary>
  7. /// 单元格数值
  8. /// </summary>
  9. object CellValue { set; get; }
  10. /// <summary>
  11. /// 获取界面显示对象
  12. /// </summary>
  13. object GetDisplayObject();
  14. }
  15. }
  16. #endif