summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue/Managed/IgnoredFiles/Node.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/Managed/IgnoredFiles/Node.cs')
-rw-r--r--modules/mono/glue/Managed/IgnoredFiles/Node.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/mono/glue/Managed/IgnoredFiles/Node.cs b/modules/mono/glue/Managed/IgnoredFiles/Node.cs
deleted file mode 100644
index cff61b1e0b..0000000000
--- a/modules/mono/glue/Managed/IgnoredFiles/Node.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-
-using System;
-
-namespace Godot
-{
- public partial class Node
- {
- public Node GetChild(int idx)
- {
- throw new NotImplementedException();
- }
-
- public Node GetNode(NodePath path)
- {
- throw new NotImplementedException();
- }
-
- public Node Owner
- {
- get => throw new NotImplementedException();
- set => throw new NotImplementedException();
- }
-
- public Node GetParent()
- {
- throw new NotImplementedException();
- }
- }
-}