Files
tbd-station-14/Content.Benchmarks/Program.cs
Tyler Young 4b64aa2b9d fix benchmark
improve some test diagnostics

fix some bug where order of shutdown of AiControllerComponent mattered or Processor was never initialized
2020-06-22 04:49:54 -04:00

14 lines
308 B
C#

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