Files
GhostEngine/Ghost.Editor.Core/AssetHandle/AssetImporterAttribute.cs
2026-01-27 14:39:00 +09:00

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