using System.Collections; using System.Collections.Generic; using UnityEngine; [System.Serializable] public class GoodsView { public ItemType goodsType; public GameObject gameObj; } [CreateAssetMenu(fileName = "GoodsSO", menuName = "GoodsSO")] public class GoodsSO : ScriptableObject { // public GoodsType public List goodsModel = new List(); }