This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GlobalGameJam-2021/Assets/Scripts/MainMenu.cs
T
2021-01-30 21:42:42 +01:00

36 lines
583 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class MainMenu : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void PlayGame()
{
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
}
public void Credits()
{
}
public void QuitGame()
{
Debug.Log("Quit");
Application.Quit();
}
}