14 lines
268 B
C#
Raw Normal View History

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