From 8e8c86b2c12aad0182440c0d63111a597ba07779 Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Mon, 18 Nov 2024 19:32:23 +0300 Subject: [PATCH] Remove unnecessary attribute. --- NativeTypeNameAttribute.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 NativeTypeNameAttribute.cs diff --git a/NativeTypeNameAttribute.cs b/NativeTypeNameAttribute.cs deleted file mode 100644 index fe5b75a..0000000 --- a/NativeTypeNameAttribute.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace Quik.Stb -{ - [AttributeUsage(System.AttributeTargets.All, Inherited = false, AllowMultiple = true)] - internal sealed class NativeTypeNameAttribute : System.Attribute - { - public NativeTypeNameAttribute(string typename) - { - } - } -}