1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-29 03:23:37 +02:00
MLEM/Sandbox/Program.cs

10 lines
189 B
C#
Raw Normal View History

2019-09-19 20:23:18 +02:00
namespace Sandbox {
internal static class Program {
private static void Main() {
using (var game = new GameImpl())
game.Run();
}
}
}