12 lines
216 B
C#
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);
|
|
}
|
|
}
|