From 1c7824b55084114d03c20ec26bec03611cc1f3e2 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 10 Mar 2024 09:37:02 -0500 Subject: [PATCH] Add link to docs in setupDraggableNode docstring --- src/game/boards/board.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/boards/board.tsx b/src/game/boards/board.tsx index 5b27d02..32d29f0 100644 --- a/src/game/boards/board.tsx +++ b/src/game/boards/board.tsx @@ -89,6 +89,8 @@ export interface DraggableNode { /** * Sets up a system to allow nodes to be moved within a board by dragging and dropping. * Also allows for dropping nodes on other nodes to trigger code. + * Using this function is fairly advanced, consider reading through this docs page for guidance: + * https://moddingtree.com/guide/advanced-concepts/boards * @param options Draggable node options. * @returns A DraggableNode object. */