23 lines
377 B
C#
23 lines
377 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class MainMenuController : MonoBehaviour
|
|
{
|
|
public void HandleStart()
|
|
{
|
|
SceneManager.LoadScene("main");
|
|
}
|
|
|
|
public void HandleSettings()
|
|
{
|
|
|
|
}
|
|
|
|
public void HandleExit()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|