25 lines
525 B
C#
Raw Normal View History

2011-10-31 05:36:24 +00:00
using System;
using ANX.Framework.NonXNA;
2011-10-31 05:36:24 +00:00
namespace WindowsGame1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
AddInSystemFactory.Instance.SetPreferredSystem(
//AddInType.RenderSystem, "OpenGL3");
AddInType.RenderSystem, "DirectX10");
2011-10-31 05:36:24 +00:00
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}