summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/IgnoredFiles
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-05-21 19:09:00 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-05-21 19:09:00 +0200
commit9b76c5609810a2015070c83f6bb9759fbdd83dce (patch)
tree25d587767b34c47010a16f2165c267d0f532fe47 /modules/mono/glue/Managed/IgnoredFiles
parentf54becfee28fef5be69217660c2b05856ab16819 (diff)
Fix C# build error in MarshalUtils debug code
Diffstat (limited to 'modules/mono/glue/Managed/IgnoredFiles')
-rw-r--r--modules/mono/glue/Managed/IgnoredFiles/Node.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/mono/glue/Managed/IgnoredFiles/Node.cs b/modules/mono/glue/Managed/IgnoredFiles/Node.cs
index 99ba0f827a..cff61b1e0b 100644
--- a/modules/mono/glue/Managed/IgnoredFiles/Node.cs
+++ b/modules/mono/glue/Managed/IgnoredFiles/Node.cs
@@ -15,9 +15,10 @@ namespace Godot
throw new NotImplementedException();
}
- public Node GetOwner()
+ public Node Owner
{
- throw new NotImplementedException();
+ get => throw new NotImplementedException();
+ set => throw new NotImplementedException();
}
public Node GetParent()