summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue/Managed/IgnoredFiles/Enums.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/Managed/IgnoredFiles/Enums.cs')
-rw-r--r--modules/mono/glue/Managed/IgnoredFiles/Enums.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/mono/glue/Managed/IgnoredFiles/Enums.cs b/modules/mono/glue/Managed/IgnoredFiles/Enums.cs
new file mode 100644
index 0000000000..05f1abcf93
--- /dev/null
+++ b/modules/mono/glue/Managed/IgnoredFiles/Enums.cs
@@ -0,0 +1,21 @@
+
+namespace Godot
+{
+ public enum Margin
+ {
+ Left = 0,
+ Top = 1,
+ Right = 2,
+ Bottom = 3
+ }
+
+ public enum Error
+ {
+ Ok = 0
+ }
+
+ public enum PropertyHint
+ {
+ None = 0
+ }
+}