mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
14 lines
No EOL
362 B
C#
14 lines
No EOL
362 B
C#
using Microsoft.Xna.Framework;
|
|
using MLEM.Misc;
|
|
|
|
namespace Demos.DesktopGL {
|
|
public static class Program {
|
|
|
|
public static void Main() {
|
|
TextInputWrapper.Current = new TextInputWrapper.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
|
|
using (var game = new GameImpl())
|
|
game.Run();
|
|
}
|
|
|
|
}
|
|
} |