GameBundle/Test/Program.cs
2022-08-17 21:51:38 +02:00

14 lines
314 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();
}
}