23 lines
464 B
C#
23 lines
464 B
C#
![]() |
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using BlueWaterProject;
|
||
|
using Doozy.Runtime.UIManager.Containers;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class TycoonUi : MonoBehaviour
|
||
|
{
|
||
|
public UIPopup BuildListPopup { get; set; }
|
||
|
|
||
|
private void Init()
|
||
|
{
|
||
|
UiManager.Inst.TycoonUi = this;
|
||
|
BuildListPopup = transform.Find("BuildListPopup").GetComponent<UIPopup>();
|
||
|
}
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
Init();
|
||
|
}
|
||
|
}
|