mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
12 lines
209 B
C#
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();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|