25 lines
468 B
C#
25 lines
468 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using WI;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
namespace CHN
|
||
|
|
{
|
||
|
|
public class Panel_WorkConditionAnalysis : PanelBase
|
||
|
|
{
|
||
|
|
Button Button_Close;
|
||
|
|
|
||
|
|
public override void AfterAwake()
|
||
|
|
{
|
||
|
|
Button_Close.onClick.AddListener(() => SetActive(false));
|
||
|
|
SetActive(false);
|
||
|
|
}
|
||
|
|
public void Open()
|
||
|
|
{
|
||
|
|
SetActive(true);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|