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

15 lines
315 B
C#
Raw Permalink Normal View History

2022-09-03 12:31:34 +02:00
using Microsoft.Xna.Framework;
using MLEM.Misc;
2020-02-24 14:03:53 +01:00
2022-08-20 11:39:28 +02:00
namespace Sandbox;
2019-09-19 20:23:18 +02:00
internal static class Program {
2019-09-19 20:23:18 +02:00
private static void Main() {
MlemPlatform.Current = new MlemPlatform.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
using var game = new GameImpl();
game.Run();
2019-09-19 20:23:18 +02:00
}
2022-08-20 11:39:28 +02:00
}