diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-05-21 19:09:00 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-05-21 19:09:00 +0200 |
commit | 9b76c5609810a2015070c83f6bb9759fbdd83dce (patch) | |
tree | 25d587767b34c47010a16f2165c267d0f532fe47 /modules/mono/glue/Managed/IgnoredFiles | |
parent | f54becfee28fef5be69217660c2b05856ab16819 (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.cs | 5 |
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() |