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

14 lines
344 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() {
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-19 20:23:18 +02:00
}
}
}