#if UNITY_2019_4_OR_NEWER using System; using System.Collections.Generic; namespace YooAsset.Editor { public interface ITableData { /// /// 是否可见 /// bool Visible { set; get; } /// /// 单元格集合 /// IList Cells { set; get; } } } #endif