2025-01-02 12:15:45 +08:00

21 lines
631 B
C#

using CG.Framework;
using System;
/********************************************************************************
*Create By CG
*Function Ö÷ҳ״̬
*********************************************************************************/
namespace ZXK.LouDiXvMuNiu
{
public class HomeState : State
{
public override string _SceneName => "Home";
public HomeState(StateContext stateContext) : base(stateContext)
{
}
public override void EnterState()
{
UI_Manage.Instance.ShowPanel("HomePanel", Type.GetType("ZXK.LouDiXvMuNiu.HomePanel"), UIGroup.Main);
}
}
}