ReFuel.StbImage/NativeTypeNameAttribute.cs

13 lines
292 B
C#
Raw Normal View History

using System;
namespace Quik.Stb.Image
{
[AttributeUsage(System.AttributeTargets.All, Inherited = false, AllowMultiple = true)]
internal sealed class NativeTypeNameAttribute : System.Attribute
{
public NativeTypeNameAttribute(string typename)
{
}
}
}