GreatSpringGameJam/GreatSpringGameJam/Program.cs
2021-03-07 22:23:51 +01:00

14 lines
357 B
C#

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