GreatSpringGameJam/GreatSpringGameJam/Program.cs

14 lines
357 B
C#
Raw Permalink Normal View History

2021-03-07 22:23:51 +01:00
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();
}
}
}