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