summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/IgnoredFiles/Node.cs
blob: 99ba0f827aeab239c8408a814d41fe687b580266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

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 GetOwner()
        {
            throw new NotImplementedException();
        }

        public Node GetParent()
        {
            throw new NotImplementedException();
        }
    }
}