9 lines
170 B
GDScript
9 lines
170 B
GDScript
class_name CookingRecipe
|
|
const ItemStack = preload("res://scripts/Item/ItemStack.gd")
|
|
|
|
func _init() -> void:
|
|
pass
|
|
|
|
func getIngredients() -> Array[ItemStack]:
|
|
return []
|