1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-05 06:49:09 +01:00
MLEM/Examples/Program.cs
2019-08-12 00:59:55 +02:00

10 lines
No EOL
187 B
C#

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