using System.Collections; using System.Collections.Generic; using UnityEngine; public enum CurrentLevel { /// /// 省会 /// ProvincialCapital, /// /// 城市 /// City, /// /// 区 /// Area } public class CityInfo : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } }