using System.Collections; using System.Collections.Generic; using UnityEngine; public class quitScrip : MonoBehaviour { // Start is called before the first frame update public void quitSim() { Application.Quit(); Debug.Log("Exiting Simulation"); } }