2023-12-10 12:28:20 +08:00
|
|
|
|
namespace Script.UI.Process
|
|
|
|
|
{
|
|
|
|
|
public class FirstProcess : ProcessBase
|
|
|
|
|
{
|
|
|
|
|
public override void Init()
|
|
|
|
|
{
|
|
|
|
|
base.Init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Enter()
|
|
|
|
|
{
|
|
|
|
|
base.Enter();
|
2023-12-25 22:53:30 +08:00
|
|
|
|
UIManager.Instance.OpenPanel(PanelType.Draw);
|
2023-12-10 12:28:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|