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