27 lines
456 B
C#
27 lines
456 B
C#
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class mainmenumanager : MonoBehaviour
|
|
{
|
|
public void exit()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
public void play()
|
|
{
|
|
SceneManager.LoadScene (1);
|
|
}
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|