anx.framework/ANX.Framework/NonXNA/PreloadAttribute.cs
Konstantin Koch 8287c54432 Included the Visual Studio extension and made the necessary changes to make it run.
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.
2015-04-08 14:50:03 +02:00

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
{
}
}