using UnityEngine; public class MainMenu : MonoBehaviour { void Awake() { Screen.fullScreen = false; Screen.SetResolution(1920, 1080, false); } public void QuitGame() { Application.Quit(); } }