using System.Collections; using System.Collections.Generic; using UnityEngine; public class QuitGame : MonoBehaviour { public void Exit() { Application.Quit(); UnityEditor.EditorApplication.isPlaying = false; } }