12 lines
206 B
C#
12 lines
206 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: InternalsVisibleTo("Burst.Benchmarks")]
|
|
|
|
namespace UnityBenchShared
|
|
{
|
|
internal interface IArgumentProvider
|
|
{
|
|
object Value { get; }
|
|
}
|
|
}
|