using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "New Card Tag", menuName = "Card/Card Tag")]
public class CardTag : ScriptableObject
{
public new string name;
public string description;
}