1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-04-28 23:29:06 +02:00
MLEM/Demos.DesktopGL/Program.cs

23 lines
494 B
C#

using MLEM.Misc;
#if !FNA
using Microsoft.Xna.Framework;
#else
using Microsoft.Xna.Framework.Input;
#endif
namespace Demos.DesktopGL;
public static class Program {
public static void Main() {
#if FNA
MlemPlatform.Current = new MlemPlatform.DesktopFna(a => TextInputEXT.TextInput += a);
#else
MlemPlatform.Current = new MlemPlatform.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
#endif
using var game = new GameImpl();
game.Run();
}
}