Co-authored-by: zzdxxz <2079238449@qq.com> Co-committed-by: zzdxxz <2079238449@qq.com>
24 lines
470 B
C#
24 lines
470 B
C#
namespace UI
|
|
{
|
|
public class EscUI:UIBase
|
|
{
|
|
public void ContinueButton()
|
|
{
|
|
Base.UIInputControl.Instance.CloseWindow(this);
|
|
}
|
|
|
|
public void ExitButton()
|
|
{
|
|
#if UNITY_EDITOR
|
|
UnityEditor.EditorApplication.isPlaying = false; // 停止编辑器播放模式
|
|
#else
|
|
Application.Quit(); // 关闭游戏
|
|
#endif
|
|
}
|
|
|
|
public void SettingsButton()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |