1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 13:48:46 +02:00
MLEM/Demos.DesktopGL/Program.cs

14 lines
349 B
C#
Raw Normal View History

2020-02-24 14:03:53 +01:00
using Microsoft.Xna.Framework;
using MLEM.Misc;
2019-09-01 11:56:12 +02:00
namespace Demos.DesktopGL {
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();
2019-09-01 11:56:12 +02:00
}
}
}