using Godot; public class CraftNode : ProgramNode { public CraftNode() { DisplayText = "Craft"; } public override bool Execute(Robot robot) { GD.Print("Craft"); if (nextNode != null) { return nextNode.Execute(robot); } else { return true; } } }