improve some test diagnostics fix some bug where order of shutdown of AiControllerComponent mattered or Processor was never initialized
14 lines
308 B
C#
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();
|
|
}
|
|
}
|
|
}
|