using Microsoft.Xna.Framework; using MLEM.Misc; namespace GreatSpringGameJam { public static class Program { public static void Main() { TextInputWrapper.Current = new TextInputWrapper.DesktopGl((w, c) => w.TextInput += c); using var game = new GameImpl(); game.Run(); } } }