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

19 lines
419 B
C#
Raw Normal View History

2025-01-07 20:11:11 +08:00
namespace AxibugEmuOnline.Client
2024-12-11 21:21:27 +08:00
{
public class InGameUI_QuitGame : ExecuteMenu
{
private InGameUI m_gameUI;
2025-01-07 20:11:11 +08:00
public override string Name => "退出";
2024-12-11 21:21:27 +08:00
2025-01-07 20:11:11 +08:00
public InGameUI_QuitGame(InGameUI gameUI)
2024-12-11 21:21:27 +08:00
{
m_gameUI = gameUI;
}
public override void OnExcute(OptionUI optionUI, ref bool cancelHide)
{
m_gameUI.QuitGame();
}
}
}