15 lines
358 B
C#
15 lines
358 B
C#
namespace Ghost.Editor.Core.AssetHandle;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
internal class AssetImporterAttribute : Attribute
|
|
{
|
|
public string[] SupportedExtensions
|
|
{
|
|
get;
|
|
}
|
|
|
|
public AssetImporterAttribute(params string[] supportedExtensions)
|
|
{
|
|
SupportedExtensions = supportedExtensions;
|
|
}
|
|
} |