mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
13 lines
261 B
C#
13 lines
261 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Content.Benchmarks
|
|
{
|
|
internal static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
|
|
}
|
|
}
|
|
}
|