using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "DeckData", menuName = "Scriptable Objects/DeckData")] public class DeckData : ScriptableObject { public List Cards; public Sprite cardBack; }