Added basic components for DSL. Working on functionality next.

This commit is contained in:
=
2026-04-28 13:52:57 +02:00
parent 287cb4df78
commit b926be307e
22 changed files with 293 additions and 45 deletions
+14
View File
@@ -0,0 +1,14 @@
using Godot;
public class CraftNode : ProgramNode
{
public CraftNode()
{
DisplayText = "Craft";
}
public override void Execute(Robot robot)
{
GD.Print("Craft");
nextNode.Execute(robot);
}
}