2012-01-16 13:48:21 +00:00

26 lines
561 B
C#

using System;
using ANX.Framework.NonXNA;
namespace WindowsGame1
{
#if WINDOWS || XBOX
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
//AddInSystemFactory.Instance.PreferredRenderSystem = "OpenGL3";
//AddInSystemFactory.Instance.PreferredRenderSystem = "DirectX11";
using (Game1 game = new Game1())
{
game.Run();
}
}
}
#endif
}