using System;
namespace FlaxEngine
{
///
/// This attribute is used to show actors that can be created in the actor tab of the toolbox.
///
[Serializable]
[AttributeUsage(AttributeTargets.Class)]
public class ActorToolboxAttribute : Attribute
{
///
/// The path to be used in the tool box
///
public string Group;
///
/// Initializes a new instance of the class.
///
/// The group to use to create the tab
public ActorToolboxAttribute(string group)
{
Group = group;
}
}
}