using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// This represents anything needed to construct one item with pre-scripted information /// public abstract class ScriptedItem : ScriptableObject { public string Name; public string Description; public Sprite Sprite; public int Price; public ItemRarity Rarity; public abstract Item GenerateItem(); }