2023-04-03 11:04:31 +08:00

12 lines
216 B
C#

using UnityEditor;
namespace BFEditor.Resource
{
public interface IResImporter
{
void DoImport(string assetPath, bool isFix);
void DoImport(AssetImporter assetImporter, bool isFix);
}
}