1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-05 01:17:06 +02:00
MLEM/Sandbox/Program.cs
2022-09-03 12:31:34 +02:00

15 lines
315 B
C#

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