14 lines
304 B
C#
14 lines
304 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|