14 lines
274 B
C#
14 lines
274 B
C#
using BenchmarkDotNet.Configs;
|
|
using BenchmarkDotNet.Running;
|
|
|
|
namespace Content.Benchmarks
|
|
{
|
|
internal class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
BenchmarkRunner.Run<ComponentManagerGetAllComponents>();
|
|
}
|
|
}
|
|
}
|