using System.Collections; using System.Collections.Generic; using UnityEngine; namespace SimpleInventorySystem { public class Inventory : MonoBehaviour { // Start is called before the first frame update public List items; //[SerializeField] private Slot[] slots; void Start() { } // Update is called once per frame void Update() { } } }