1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-14 21:28:45 +02:00
MLEM/MLEM.Templates/content/MLEM.Templates.DesktopGL/Program.cs

14 lines
348 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
using MLEM.Misc;
2020-02-24 17:34:05 +01:00
namespace TemplateNamespace {
public static class Program {
public static void Main() {
MlemPlatform.Current = new MlemPlatform.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
2021-03-08 15:12:13 +01:00
using var game = new GameImpl();
game.Run();
2020-02-24 17:34:05 +01:00
}
}
}