Organize files into some new folders

This commit is contained in:
JonShard
2026-07-31 16:51:01 +02:00
parent 6f01e20700
commit ee169a62b6
20 changed files with 10 additions and 13 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