TinyAdventure/model/recipe.gd

7 lines
138 B
GDScript
Raw Normal View History

2024-07-09 22:33:38 +02:00
class_name Recipe
extends Resource
@export var name:String
@export var ingredients:Array[Item] = []
@export var results:Array[Item] = []