mirror of
https://github.com/openeggbert/mobile-eggbert-fna-desktop.git
synced 2025-03-22 22:32:27 +01:00
17 lines
427 B
C#
17 lines
427 B
C#
using WindowsPhoneSpeedyBlupi;
|
|
|
|
static class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
|
|
//Microsoft.Xna.Framework.FNADllMap.Init();
|
|
// See https://aka.ms/new-console-template for more information
|
|
//Console.WriteLine("Hello, World!");
|
|
Env.init(EnvClasses.Impl.FNA, EnvClasses.Platform.Desktop);
|
|
var game = new WindowsPhoneSpeedyBlupi.Game1();
|
|
game.Run();
|
|
}
|
|
}
|
|
|