Benchmarks project along with a component manager benchmark. (#251)

This commit is contained in:
Pieter-Jan Briers
2019-06-02 01:17:07 +02:00
committed by GitHub
parent 400778eb73
commit dd13d969b2
4 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
namespace Content.Benchmarks
{
internal class Program
{
public static void Main(string[] args)
{
BenchmarkRunner.Run<ComponentManagerGetAllComponents>();
}
}
}