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
357 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 {
private static void Main() {
2020-02-27 18:56:49 +01:00
TextInputWrapper.Current = new TextInputWrapper.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
2019-09-19 20:23:18 +02:00
using (var game = new GameImpl())
game.Run();
}
}
}