12 lines
366 B
C#
12 lines
366 B
C#
using System;
|
|
|
|
namespace Quik.FreeType
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.ReturnValue)]
|
|
public sealed class NativeTypeNameAttribute : Attribute
|
|
{
|
|
public NativeTypeNameAttribute(string name)
|
|
{
|
|
}
|
|
}
|
|
} |