GameBundle/Test/Program.cs
2020-04-09 18:06:01 +02:00

14 lines
343 B
C#

using Microsoft.Xna.Framework;
using MLEM.Misc;
namespace Test {
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();
}
}
}