VanRtkDbg/Assets/Scripts/CardTag.cs

13 lines
284 B
C#
Raw Normal View History

2022-03-07 22:12:02 -08:00
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;
public Sprite artwork;
}