Files
Dawn-Godot/scripts/Cooking/Recipe.gd
2025-05-20 15:19:43 -05:00

8 lines
154 B
GDScript

@tool
class_name Recipe extends Node
@export var recipeName:String = ""
@export var ingredients:Array[RecipeIngredient] = []
func test():
print("test")