using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "StoreObject", menuName = "StoreObject", order = 4)] public class StoreObject : ScriptableObject { public GameObject storePrefab; public GameObject productUIPrefab; [SerializeField] public List products = new List(); }