summaryrefslogtreecommitdiff
path: root/modules/mono/glue
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-10-17 21:29:19 +0200
committerGitHub <noreply@github.com>2017-10-17 21:29:19 +0200
commitfb7428e797ba10fb666fa44b6fe55bcd7c58ee21 (patch)
tree79fcac024e497ca6a426d4ec6ff9bae05b4a7ba6 /modules/mono/glue
parent6e960c7d6bbf7481bae41ab0ebb39bc75619272a (diff)
parent6e6b455d1fe791894e1a6bd66e1f5f8471c02abc (diff)
Merge pull request #12178 from neikeq/k
Export attribute fixes and improvements
Diffstat (limited to 'modules/mono/glue')
-rw-r--r--modules/mono/glue/cs_files/ExportAttribute.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/mono/glue/cs_files/ExportAttribute.cs b/modules/mono/glue/cs_files/ExportAttribute.cs
index af3f603d6d..a4e7d447dd 100644
--- a/modules/mono/glue/cs_files/ExportAttribute.cs
+++ b/modules/mono/glue/cs_files/ExportAttribute.cs
@@ -7,13 +7,11 @@ namespace Godot
{
private int hint;
private string hint_string;
- private int usage;
- public ExportAttribute(int hint = GD.PROPERTY_HINT_NONE, string hint_string = "", int usage = GD.PROPERTY_USAGE_DEFAULT)
+ public ExportAttribute(int hint = GD.PROPERTY_HINT_NONE, string hint_string = "")
{
this.hint = hint;
this.hint_string = hint_string;
- this.usage = usage;
}
}
}