1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-08 07:43:37 +02:00
MLEM/MLEM.Templates/content/MLEM.Templates.DesktopGL/Program.cs
2020-02-24 18:07:40 +01:00

10 lines
193 B
C#

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