mirror of
https://github.com/boudji-ludwig-pett/cnam-geometry-dash.git
synced 2025-01-21 10:27:31 +01:00
31 lines
476 B
C#
31 lines
476 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class SelectLevelMenu : MonoBehaviour
|
|
{
|
|
public void PlayLevel()
|
|
{
|
|
SceneManager.LoadScene("LevelScene");
|
|
}
|
|
|
|
public void BackBtn()
|
|
{
|
|
SceneManager.LoadScene("HomeScene");
|
|
}
|
|
|
|
public void LastLevel()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public void NextLevel()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public void LevelStatsBtn()
|
|
{
|
|
// SceneManager.LoadSceneAsync(?);
|
|
}
|
|
}
|