using UnityEngine; [CreateAssetMenu()] public class SellableItemSO : ScriptableObject { public Transform Prefab; public string ItemName; public float Price; public Sprite Icon; }