1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 21:58:46 +02:00
MLEM/Demos.DesktopGL/Program.cs
2022-06-17 18:23:47 +02:00

15 lines
350 B
C#

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