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