Files
tbd-station-14/Content.Benchmarks/Program.cs
2019-08-07 18:10:55 +02:00

13 lines
250 B
C#

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