using UnityEngine; using System.Collections; public class NewBehaviourScript : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update() { if (Input.GetKey ("escape")) { Application.Quit(); } if (Input.GetKeyDown ("space")) { Application.LoadLevel (0); } } }