2023-12-26 02:10:48 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using BlueWaterProject;
|
|
|
|
using Doozy.Runtime.UIManager.Containers;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class TycoonUi : MonoBehaviour
|
|
|
|
{
|
2023-12-26 05:18:14 +00:00
|
|
|
public UIView BuildListPopup { get; set; }
|
2023-12-26 02:10:48 +00:00
|
|
|
|
|
|
|
private void Init()
|
|
|
|
{
|
|
|
|
UiManager.Inst.TycoonUi = this;
|
2023-12-26 05:18:14 +00:00
|
|
|
BuildListPopup = transform.Find("BuildListView").GetComponent<UIView>();
|
2023-12-26 02:10:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
}
|