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
2020-02-24 14:16:05 +01:00

14 lines
359 B
C#

using Microsoft.Xna.Framework;
using MLEM.Misc;
namespace Sandbox {
internal static class Program {
private static void Main() {
//TextInputWrapper.Current = new TextInputWrapper.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
using (var game = new GameImpl())
game.Run();
}
}
}