AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/UI/InGameUI/InGameUI_QuitGame.cs

19 lines
407 B
C#
Raw Normal View History

2024-09-14 15:32:29 +08:00
namespace AxibugEmuOnline.Client
{
public class InGameUI_QuitGame : ExecuteMenu
{
private InGameUI m_gameUI;
public InGameUI_QuitGame(InGameUI gameUI) : base("<22>˳<EFBFBD>", null)
{
m_gameUI = gameUI;
}
2024-11-28 16:33:00 +08:00
public override void OnExcute(OptionUI optionUI, ref bool cancelHide)
2024-09-14 15:32:29 +08:00
{
m_gameUI.QuitGame();
}
}
}