14 lines
272 B
C#
Raw Normal View History

2025-01-07 19:59:35 +01:00
using WindowsPhoneSpeedyBlupi;
2025-01-14 16:43:33 +01:00
using static WindowsPhoneSpeedyBlupi.EnvClasses;
2025-01-07 19:59:35 +01:00
static class Program
{
static void Main()
{
2025-01-14 16:43:33 +01:00
Env.init(Impl.MonoGame, Platform.Desktop);
2025-01-07 19:59:35 +01:00
var game = new WindowsPhoneSpeedyBlupi.Game1();
game.Run();
}
}