using System;
namespace FlaxEngine
{
///
/// This attribute is used to show content items that can be created in the content browser context menu. Separate the subcontext menus with a /.
///
[Serializable]
[AttributeUsage(AttributeTargets.Class)]
public class ContentContextMenuAttribute : Attribute
{
///
/// The path to be used in the context menu
///
public string Path;
///
/// Initializes a new instance of the class.
///
/// The path to use to create the context menu.
public ContentContextMenuAttribute(string path)
{
Path = path;
}
}
}