refactor: move all scripts to Scripts folder

This commit is contained in:
2025-02-09 12:43:41 +01:00
parent 5766003c75
commit 78ab70e020
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class SelectLevelMenu : MonoBehaviour
{
public Text levelNameText;
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(?);
}
}