virtualx-engine/modules/mono/glue/Managed/IgnoredFiles/Node.cs
2019-05-21 19:09:00 +02:00

29 lines
559 B
C#

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();
}
}
}