Files
crystall-punk-14/Content.Benchmarks/Program.cs

14 lines
308 B
C#
Raw Normal View History

using BenchmarkDotNet.Running;
namespace Content.Benchmarks
{
internal static class Program
{
public static void Main(string[] args)
{
BenchmarkRunner.Run<ComponentManagerGetAllComponents>();
//ComponentManagerGetAllComponents.TestRun();
}
}
}