summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs')
-rw-r--r--modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs b/modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs
deleted file mode 100644
index 55848769d5..0000000000
--- a/modules/mono/glue/cs_files/Attributes/GodotMethodAttribute.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-
-namespace Godot
-{
- [AttributeUsage(AttributeTargets.Method)]
- internal class GodotMethodAttribute : Attribute
- {
- private string methodName;
-
- public string MethodName { get { return methodName; } }
-
- public GodotMethodAttribute(string methodName)
- {
- this.methodName = methodName;
- }
- }
-}