17 lines
374 B
C#
17 lines
374 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Card
|
||
|
{
|
||
|
[CreateAssetMenu(fileName = "NewCard", menuName = "Card/CardData")]
|
||
|
public class CardData : ScriptableObject
|
||
|
{
|
||
|
public string CardName;
|
||
|
public string CardDescription;
|
||
|
public Texture CardTexture;
|
||
|
public EffectData[] Effects;
|
||
|
}
|
||
|
|
||
|
}
|