Add Table handles Sides

This commit is contained in:
JonShard
2026-07-31 14:03:53 +02:00
parent 3d616bf4a5
commit 48c9845624
15 changed files with 528 additions and 79 deletions
+10
View File
@@ -0,0 +1,10 @@
class_name Helper
# Find a FoodItem among the direct children of [param node].
static func find_food_item(node: Node) -> FoodItem:
if not node:
return null
for child in node.get_children():
if child is FoodItem:
return child
return null