1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-28 23:38:20 +02:00
MLEM/MLEM.Templates/content/MLEM.Templates.DesktopGL/Program.cs
2021-03-08 15:12:13 +01:00

14 lines
356 B
C#

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