Add Unity3D projects
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
// script to enable quitting the game from the main menu
|
||||
public class QuitGame : MonoBehaviour
|
||||
{
|
||||
public void QuitGameApplication() {
|
||||
Application.Quit();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user