mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +01:00
10 lines
189 B
C#
10 lines
189 B
C#
|
namespace Sandbox {
|
|||
|
internal static class Program {
|
|||
|
|
|||
|
private static void Main() {
|
|||
|
using (var game = new GameImpl())
|
|||
|
game.Run();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|