// // Licensed under the MIT License. See LICENSE file in the project root for full license information. // #pragma warning disable SA1200 global using BenchmarkDotNet.Attributes; global using BenchmarkDotNet.Jobs; global using BenchmarkDotNet.Running; #pragma warning restore SA1200 namespace MUnique.OpenMU.Network.Benchmarks; /// /// The class of the entry point of the benchmark. /// public static class Program { /// /// The entry point of the benchmark. /// /// The arguments. public static void Main(string[] args) { BenchmarkRunner.Run(); BenchmarkRunner.Run(); } }