1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-29 03:23:37 +02:00
MLEM/Sandbox/Program.cs

14 lines
315 B
C#
Raw Normal View History

2020-02-24 14:03:53 +01:00
using Microsoft.Xna.Framework;
using MLEM.Misc;
namespace Sandbox;
2019-09-19 20:23:18 +02:00
internal static class Program {
2019-09-19 20:23:18 +02:00
private static void Main() {
MlemPlatform.Current = new MlemPlatform.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
using var game = new GameImpl();
game.Run();
2019-09-19 20:23:18 +02:00
}
}