17 lines
360 B
C#
17 lines
360 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
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> units = new Dictionary<string,GameObject>();
|
|
|
|
public static int chapter;
|
|
}
|