17 lines
427 B
C#
Raw Normal View History

2025-01-14 19:04:25 +01:00
using WindowsPhoneSpeedyBlupi;
static class Program
2024-12-22 15:18:03 +01:00
{
static void Main()
{
//Microsoft.Xna.Framework.FNADllMap.Init();
// See https://aka.ms/new-console-template for more information
//Console.WriteLine("Hello, World!");
2025-01-14 19:04:25 +01:00
Env.init(EnvClasses.Impl.FNA, EnvClasses.Platform.Desktop);
2024-12-22 15:18:03 +01:00
var game = new WindowsPhoneSpeedyBlupi.Game1();
game.Run();
}
}