14 lines
304 B
C#
Raw Normal View History

using System;
namespace $safeprojectname$
{
static class Program
{
static void Main(string[] args)
{
var host = new ANX.PlatformSystem.Metro.WindowsGameHost(() => new Game1());
Windows.ApplicationModel.Core.CoreApplication.Run(host);
}
}
}