12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import type { GoalNodeData } from "./GoalNode";
|
|
|
|
/**
|
|
* Default data for this node
|
|
*/
|
|
export const GoalNodeDefaults: GoalNodeData = {
|
|
label: "Goal Node",
|
|
droppable: true,
|
|
description: "The robot will strive towards this goal",
|
|
achieved: false,
|
|
hasReduce: true,
|
|
}; |