2022-01-12 10:06:03 +03:00
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
namespace UnityEngine.TestTools.Utils
|
|
|
|
{
|
|
|
|
internal interface IAssemblyWrapper
|
|
|
|
{
|
|
|
|
Assembly Assembly { get; }
|
2022-01-12 10:39:15 +03:00
|
|
|
AssemblyName Name { get; }
|
2022-01-12 10:06:03 +03:00
|
|
|
string Location { get; }
|
|
|
|
AssemblyName[] GetReferencedAssemblies();
|
|
|
|
}
|
|
|
|
}
|