using System.Collections; using System.Collections.Generic; using UnityEngine; [System.Serializable] public class InventoryData { public int capacity = 0; public SerializableDictionary items = new SerializableDictionary(); }