mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +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();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|