Main menu overhaul

This commit is contained in:
2020-01-31 02:09:57 +01:00
parent 6d8415b748
commit d127bd6477
24 changed files with 755 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class QuitButton : MonoBehaviour
{
void OnMouseDown()
{
Application.Quit();
}
}