13 lines
284 B
C#
13 lines
284 B
C#
|
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;
|
||
|
}
|