This commit is contained in:
2022-03-06 22:56:32 +01:00
parent 470a5bed60
commit bc36aaba4d
20 changed files with 953 additions and 1936 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ExitGame : MonoBehaviour
{
private void Update() {
if (Input.GetKey("escape")) {
Debug.Log("Application is quitting!!");
Application.Quit();
}
}
}