1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 23:51:23 +02:00
MLEM/Sandbox/Program.cs
2022-08-20 11:39:28 +02:00

14 lines
284 B
C#

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();
}
}