summaryrefslogtreecommitdiff
path: root/Assembly_CSharp/MainMenu.cs
blob: d35aad3e6a30675f8fb93674762e156a6bd3e03a (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, 1200, false);
    }

	public void QuitGame()
	{
		Application.Quit();
	}
}