DotTiled/DotTiled.Benchmark/Program.cs
2024-07-28 23:50:16 +02:00

34 lines
589 B
C#

using System;
using System.Security.Cryptography;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
namespace MyBenchmarks
{
public class MapLoader
{
public MapLoader()
{
}
[Benchmark]
public DotTiled.Map LoadWithDotTiled()
{
throw new NotImplementedException();
}
[Benchmark]
public TiledLib.Map LoadWithTiledLib()
{
throw new NotImplementedException();
}
}
public class Program
{
public static void Main(string[] args)
{
//var summary = BenchmarkRunner.Run<Md5VsSha256>();
}
}
}