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