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.
20 lines
573 B
C#
20 lines
573 B
C#
using ANX.Framework.NonXNA.Development;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ANX.Framework.NonXNA
|
|
{
|
|
//Used to attach custom editors to types which don't know of the editor.
|
|
//The build tools like the content compiler and the extension for visual studio use this.
|
|
/// <summary>
|
|
/// States that the type should be loaded as early as possible.
|
|
/// </summary>
|
|
[Developer("KorsarNek")]
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PreloadAttribute : Attribute
|
|
{
|
|
}
|
|
}
|