2023-08-10 06:39:59 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
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>
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|