blob: 1028d1360c656f8752da006b5da85f211bd96a01 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | using UnityEngine;
public class MainMenu : MonoBehaviour
{
	void Awake()
	{
        Screen.fullScreen = false;
        Screen.SetResolution(1920, 1080, false);
    }
	public void QuitGame()
	{
		Application.Quit();
	}
}
 |