obfuz/Editor/Utils/IAssemblyResolver.cs

14 lines
250 B
C#
Raw Normal View History

2025-04-05 19:02:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-05-04 19:24:14 +08:00
namespace Obfuz.Utils
2025-04-05 19:02:50 +08:00
{
public interface IAssemblyResolver
{
string ResolveAssembly(string assemblyName);
}
}