Merge branch 'dev' into refactor/node-encapsulation

This commit is contained in:
Björn Otgaar
2025-11-18 12:35:53 +01:00
36 changed files with 2535 additions and 55 deletions

View File

@@ -0,0 +1,11 @@
import type { GoalNodeData } from "./GoalNode";
/**
* Default data for this node
*/
export const GoalNodeDefaults: GoalNodeData = {
label: "Goal Node",
droppable: true,
GoalList: [],
hasReduce: true,
};