arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.test-framework@038a2b0cacd2/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

14 lines
287 B
C#

using System;
using System.Reflection;
namespace UnityEngine.TestTools.Utils
{
internal interface IAssemblyWrapper
{
Assembly Assembly { get; }
AssemblyName Name { get; }
string Location { get; }
AssemblyName[] GetReferencedAssemblies();
}
}