using Invector; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Beyond { [CreateAssetMenu(menuName = "Beyond/Inventory/New Item List")] public class bItemListData : ScriptableObject { public List items = new List(); public bool inEdition; public bool itemsHidden = true; } }