using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// This represents anything needed to construct one item with pre-scripted information /// [CreateAssetMenu]//Allows creating ViewConfig objects in Assets -> Create menu in the Unity Editor public class ScriptedItem : ScriptableObject { public string Name; public string Description; public Sprite sprite; }