mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-05 23:09:09 +01:00
12 lines
No EOL
199 B
C#
12 lines
No EOL
199 B
C#
using System;
|
|
|
|
namespace Tests {
|
|
public static class Program {
|
|
|
|
public static void Main() {
|
|
using (var game = new GameImpl())
|
|
game.Run();
|
|
}
|
|
|
|
}
|
|
} |