Instruction System

This commit is contained in:
h z
2024-09-29 15:39:37 +01:00
parent 67dd8ac8dc
commit 7ae3c9d374
35 changed files with 168 additions and 43 deletions

11
src/Godot/INode.cs Normal file
View File

@@ -0,0 +1,11 @@
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);
}