1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-29 03:23:37 +02:00
MLEM/Tests/Program.cs
2019-08-07 21:26:16 +02:00

12 lines
199 B
C#

using System;
namespace Tests {
public static class Program {
public static void Main() {
using (var game = new GameImpl())
game.Run();
}
}
}