12 lines
282 B
C#
12 lines
282 B
C#
using Godot;
|
|
|
|
namespace Nocturnis.Godot;
|
|
|
|
public interface INode
|
|
{
|
|
void RemoveChild(Node node);
|
|
void AddChild(Node node, bool forceReadableName = false, Node.InternalMode @internal = (Node.InternalMode)(0));
|
|
bool Visible { get; set; }
|
|
Node GetNode(NodePath path);
|
|
}
|