DataManager 수정
This commit is contained in:
parent
52efb99600
commit
8a54f64a2e
@ -1,6 +1,4 @@
|
|||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using _02.Scripts.WaterAndShip;
|
|
||||||
using BlueWaterProject;
|
using BlueWaterProject;
|
||||||
using Sirenix.OdinInspector;
|
using Sirenix.OdinInspector;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@ -8,12 +6,10 @@ using UnityEngine;
|
|||||||
public class DataManager : Singleton<DataManager>
|
public class DataManager : Singleton<DataManager>
|
||||||
{
|
{
|
||||||
[field: SerializeField] public CardDataSo CardDataSo { get; private set; }
|
[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")]
|
[Title("DataBase")]
|
||||||
public List<string> CardList { get; private set; } = new(MAX_CARD_NUM);
|
public List<string> CardList { get; private set; } = new(MAX_CARD_NUM);
|
||||||
|
private const int MAX_CARD_NUM = 100;
|
||||||
|
|
||||||
[Title("DataBase", "GameObject")]
|
[Title("DataBase", "GameObject")]
|
||||||
public GameObject mouseSpot;
|
public GameObject mouseSpot;
|
||||||
|
Loading…
Reference in New Issue
Block a user