Files
XMen/Assets/Scripts/UI/SystemPanel.cs
2025-07-10 14:49:53 +08:00

12 lines
195 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SystemPanel : MonoBehaviour
{
public void OnTouchExit()
{
Application.Quit();
}
}