using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class Statics { #if UNITY_EDITOR public static readonly string url = "https://localhost:4860"; //public static readonly string url = "https://game.pandoli365.com"; #else public static readonly string url = "https://game.pandoli365.com"; #endif public static string version = ""; public static ExcelDatas excelDatas; public static Dictionary stringUnits = new Dictionary(); public static Dictionary intUnits = new Dictionary(); public static Dictionary stringIcons = new Dictionary(); public static Dictionary shopItems = new Dictionary(); //¼­¹ö¿¡¼­ ³»·ÁÁÖ´Â µ¥ÀÌÅ͵é public static string uuid; public static Dictionary dynamic = new Dictionary(); //À¯Àú ±âº» Á¤º¸ public static string nickname; public static uint gold; public static uint cash; public static ItemManager itemManager; //À¯Àú°¡ ¼¼ÆÃÇÑ µ¦ Á¤º¸ public static List deck_info; //À¯Àú°¡ Ç÷¹ÀÌÇÑ ÃÁÅÍ Á¤º¸ public static int chapter; //±âº» ¼¼ÆÃ µ¥ÀÌÅÍ public static readonly int resourceBuy = 150; }