30 lines
856 B
C#
30 lines
856 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class Statics
|
|
{
|
|
public static readonly string url = "https://game.pandoli365.com";
|
|
|
|
|
|
public static string version = "";
|
|
|
|
public static ExcelDatas excelDatas;
|
|
|
|
public static Dictionary <string, GameObject> stringUnits = new Dictionary<string,GameObject>();
|
|
public static Dictionary <int, GameObject> intUnits = new Dictionary<int,GameObject>();
|
|
|
|
public static Dictionary<string, Sprite> stringIcons = new Dictionary<string, Sprite>();
|
|
|
|
//서버에서 내려주는 데이터들
|
|
public static Dictionary<int, DeckUnitInfo> deckUnit = new Dictionary<int, DeckUnitInfo>();
|
|
|
|
//유저가 세팅한 덱 정보
|
|
public static List<DeckInfo> deck_info;
|
|
|
|
public static List<Equipment> equipment;
|
|
|
|
//유저가 플레이한 쳅터 정보
|
|
public static int chapter;
|
|
}
|