jump-game/Jump Game/Library/PackageCache/com.unity.test-framework@1.0.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs

12 lines
238 B
C#
Raw Normal View History

2020-01-29 08:05:38 +00:00
using System.Reflection;
namespace UnityEngine.TestTools.Utils
{
internal interface IAssemblyWrapper
{
Assembly Assembly { get; }
string Location { get; }
AssemblyName[] GetReferencedAssemblies();
}
}