using System.Collections.Generic; using UnityEngine; namespace DanieleMarotta.RiversongCodeShowcase { [CreateAssetMenu(fileName = "RecipeDefinition", menuName = "Riversong Code Showcase/Recipe Definition")] public class RecipeDefinition : GameDataAsset { public List Inputs; public ProductAmountAuthoring Output; public int ProductionTime; } }