2023-08-23 07:24:31 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using _02.Scripts.WaterAndShip;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
|
|
namespace BlueWaterProject
|
|
|
|
{
|
2023-08-28 19:52:23 +00:00
|
|
|
[CreateAssetMenu(fileName = "CardDataSo", menuName = "ScriptableObjects/CardData", order = 10)]
|
2023-08-23 07:24:31 +00:00
|
|
|
public class CardDataSo : ScriptableObject
|
|
|
|
{
|
|
|
|
public List<Card> cardDataList = new(GlobalValue.CARD_DATA_CAPACITY);
|
|
|
|
}
|
|
|
|
}
|