feat(): 大量更新
This commit is contained in:
17
Assets/Script/Gameplay/Card/CardData.cs
Normal file
17
Assets/Script/Gameplay/Card/CardData.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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 CardTexture;
|
||||
public EffectData[] Effects;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user