15 lines
263 B
C#
15 lines
263 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Card
|
||
|
{
|
||
|
public class CardConfig : ScriptableObject
|
||
|
{
|
||
|
public string CardName;
|
||
|
public string CardDescription;
|
||
|
public Sprite CardIcon;
|
||
|
}
|
||
|
|
||
|
}
|