YooAsset/Assets/YooAsset/Editor/UIElements/TableView/DefaultCells/AssetPathCell.cs

12 lines
216 B
C#

#if UNITY_2019_4_OR_NEWER
namespace YooAsset.Editor
{
public class AssetPathCell : StringValueCell
{
public AssetPathCell(string headerTitle) : base(headerTitle)
{
}
}
}
#endif