mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-desktop.git
synced 2025-03-25 15:47:49 +01:00
14 lines
269 B
C#
14 lines
269 B
C#
using WindowsPhoneSpeedyBlupi;
|
|
using static WindowsPhoneSpeedyBlupi.EnvClasses;
|
|
|
|
static class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
Env.init(Impl.MonoGame, Platform.Desktop);
|
|
var game = new WindowsPhoneSpeedyBlupi.Game1();
|
|
game.Run();
|
|
}
|
|
}
|
|
|