2023-08-10 06:39:59 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
2023-08-23 01:10:33 +00:00
|
|
|
using _02.Scripts.WaterAndShip;
|
|
|
|
using BlueWaterProject;
|
2023-08-17 03:42:12 +00:00
|
|
|
using Sirenix.OdinInspector;
|
2023-08-10 06:39:59 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class DataManager : Singleton<DataManager>
|
|
|
|
{
|
2023-08-23 07:24:31 +00:00
|
|
|
[field: SerializeField] public CardDataSo CardDataSo { get; private set; }
|
|
|
|
|
2023-08-23 01:10:33 +00:00
|
|
|
public List<Card> CardList = new List<Card>(10);
|
|
|
|
|
2023-08-10 06:39:59 +00:00
|
|
|
public GameObject mouseSpot;
|
2023-08-11 17:50:36 +00:00
|
|
|
public GameObject boat;
|
2023-08-17 02:02:18 +00:00
|
|
|
public GameObject assaultCard;
|
2023-08-17 03:42:12 +00:00
|
|
|
|
|
|
|
[Title("Sprites")]
|
|
|
|
public Sprite[] cardType;
|
2023-08-10 06:39:59 +00:00
|
|
|
}
|