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