DSL interpretation is working now. Changed map to be within GameData.

This commit is contained in:
=
2026-04-29 12:33:53 +02:00
parent 2f922b5e04
commit 17057487d6
7 changed files with 35 additions and 5 deletions
+1
View File
@@ -10,6 +10,7 @@ public abstract class ProgramNode
}
public abstract bool Execute(Robot robot);
public abstract void ReadParameters(NodeDisplay display);
public void LinkNode(ProgramNode nextNode)
{
this.nextNode = nextNode;