DataManager 수정

This commit is contained in:
NTG 2023-08-24 16:15:32 +09:00
parent 52efb99600
commit 8a54f64a2e

View File

@ -1,6 +1,4 @@
using System.Collections;
using System.Collections.Generic;
using _02.Scripts.WaterAndShip;
using BlueWaterProject;
using Sirenix.OdinInspector;
using UnityEngine;
@ -8,12 +6,10 @@ using UnityEngine;
public class DataManager : Singleton<DataManager>
{
[field: SerializeField] public CardDataSo CardDataSo { get; private set; }
public List<Card> CardList = new List<Card>(10);
private const int MAX_CARD_NUM = 100;
[Title("DataBase")]
public List<string> CardList { get; private set; } = new(MAX_CARD_NUM);
private const int MAX_CARD_NUM = 100;
[Title("DataBase", "GameObject")]
public GameObject mouseSpot;