Scriptum/Assets/Scripts/QuitGame.cs

13 lines
242 B
C#
Raw Normal View History

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