Dashboard/Quik.FreeType/NativeTypeNameAttribute.cs

12 lines
366 B
C#
Raw Normal View History

2023-09-15 19:35:46 +02:00
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)
{
}
}
}