virtualx-engine/modules/mono/glue/Managed/IgnoredFiles/Node.cs

29 lines
501 B
C#
Raw Normal View History

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