aboutsummaryrefslogtreecommitdiff
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.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/mono/glue/cs_files/ExportAttribute.cs b/modules/mono/glue/cs_files/ExportAttribute.cs
index dce9cc59a..e6f569e1b 100644
--- a/modules/mono/glue/cs_files/ExportAttribute.cs
+++ b/modules/mono/glue/cs_files/ExportAttribute.cs
@@ -5,13 +5,13 @@ namespace Godot
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ExportAttribute : Attribute
{
- private int hint;
- private string hint_string;
+ private PropertyHint hint;
+ private string hintString;
- public ExportAttribute(int hint = GD.PROPERTY_HINT_NONE, string hint_string = "")
+ public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "")
{
this.hint = hint;
- this.hint_string = hint_string;
+ this.hintString = hintString;
}
}
}