OldBlueWater/BlueWater/Assets/02.Scripts/Data/CardDataSo.cs
NTG 6438ca89a0 closed #27 AiView, AiStat, Unit, Card SO 추가
1.enum 변수들 NONE = 0 -> NONE = -1 변경
2.meleeWeapon -> closeWeapon 이름 변경
3.BaseCharacter(기본캐릭터) 조립형 프리팹 수정
2023-08-29 04:52:23 +09:00

13 lines
394 B
C#

using System.Collections.Generic;
using _02.Scripts.WaterAndShip;
using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
[CreateAssetMenu(fileName = "CardDataSo", menuName = "ScriptableObjects/CardData", order = 10)]
public class CardDataSo : ScriptableObject
{
public List<Card> cardDataList = new(GlobalValue.CARD_DATA_CAPACITY);
}
}