mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-05 23:09:09 +01:00
11 lines
No EOL
312 B
C#
11 lines
No EOL
312 B
C#
namespace TemplateNamespace {
|
|
public static class Program {
|
|
|
|
public static void Main() {
|
|
TextInputWrapper.Current = new TextInputWrapper.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
|
|
using (var game = new GameImpl())
|
|
game.Run();
|
|
}
|
|
|
|
}
|
|
} |