Add Container detects platable items

This commit is contained in:
JonShard
2026-07-16 12:07:32 +02:00
parent 3f1b9aea38
commit 5e6b403a43
13 changed files with 165 additions and 63 deletions
+8
View File
@@ -0,0 +1,8 @@
class_name FoodItem
extends Node
# Define the Enum at the top of your script
enum Type { MEAL, SIDE, INGREDIENT }
@export var id: String
@export var type: ItemType = Type.INGREDIENT