1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-25 22:21:42 +02:00
MLEM/Demos.DesktopGL/Program.cs
2019-09-01 11:56:12 +02:00

12 lines
209 B
C#

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