mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 13:20:50 +01:00
14 lines
315 B
C#
14 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();
|
|
}
|
|
|
|
}
|