Replaced the old VS templates with ones that offer more flexiblity. Started replacing the Content Project for the samples with our custom project type. Inlcuded a basic not yet working AssimpImporter.
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);
|
|
}
|
|
}
|
|
}
|