19 lines
463 B
C#
19 lines
463 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Gameplay
|
|
{
|
|
[CreateAssetMenu(fileName = "CardData", menuName = "ScriptableObject/CardData")]
|
|
public class CardData : ScriptableObject
|
|
{
|
|
public int CardID;
|
|
public string CardName;
|
|
public string CardDescription;
|
|
public Texture FrontCardTexture;
|
|
public Texture BackCardTexture;
|
|
public EffectData[] Effects;
|
|
}
|
|
|
|
}
|