1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-07-02 00:46:35 +02:00
MLEM/Examples/Program.cs

10 lines
187 B
C#
Raw Normal View History

2019-08-12 00:59:55 +02:00
namespace Examples {
2019-08-07 21:26:16 +02:00
public static class Program {
public static void Main() {
using (var game = new GameImpl())
game.Run();
}
}
}