Files
2026-07-16 15:09:12 +02:00

9 lines
180 B
GDScript

class_name FoodItem
extends Node
# Define the Enum at the top of your script
enum Type { MEAL, SIDE, INGREDIENT, NONE }
@export var id: String
@export var type: Type = Type.NONE