summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/ExportAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/cs_files/ExportAttribute.cs')
-rw-r--r--modules/mono/glue/cs_files/ExportAttribute.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/mono/glue/cs_files/ExportAttribute.cs b/modules/mono/glue/cs_files/ExportAttribute.cs
deleted file mode 100644
index e6f569e1bb..0000000000
--- a/modules/mono/glue/cs_files/ExportAttribute.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-
-namespace Godot
-{
- [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
- public class ExportAttribute : Attribute
- {
- private PropertyHint hint;
- private string hintString;
-
- public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "")
- {
- this.hint = hint;
- this.hintString = hintString;
- }
- }
-}