995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
28 lines
501 B
C#
28 lines
501 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 GetOwner()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Node GetParent()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|