You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
30 lines
559 B
C#
30 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();
|
|
}
|
|
}
|
|
}
|